Skip to content

Commit

Permalink
Merge pull request #4189 from kenjis/fix-IncomingRequestTest
Browse files Browse the repository at this point in the history
Fix typo in IncomingRequestTest
  • Loading branch information
samsonasik committed Jan 30, 2021
2 parents 3545acc + 200946f commit 05a836a
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 05a836a

Please sign in to comment.