From 200946f669ab68db02a3b74703eba70cd5baf40d Mon Sep 17 00:00:00 2001 From: kenjis Date: Sat, 30 Jan 2021 10:20:11 +0900 Subject: [PATCH] test: fix typo --- tests/system/HTTP/IncomingRequestTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/HTTP/IncomingRequestTest.php b/tests/system/HTTP/IncomingRequestTest.php index 8502a2a6c90b..67371cce52d4 100644 --- a/tests/system/HTTP/IncomingRequestTest.php +++ b/tests/system/HTTP/IncomingRequestTest.php @@ -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()