Skip to content

Commit

Permalink
test: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Jan 30, 2021
1 parent 49520c7 commit 200946f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/system/HTTP/IncomingRequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function testCanGrabGetVars()
$_GET['TEST'] = 5;

$this->assertEquals(5, $this->request->getGet('TEST'));
$this->assertNull($this->request->getGEt('TESTY'));
$this->assertNull($this->request->getGet('TESTY'));
}

public function testCanGrabPostVars()
Expand Down

0 comments on commit 200946f

Please sign in to comment.