From 82c2977813c0a28201379c141e0de7d092b1adf1 Mon Sep 17 00:00:00 2001 From: kenjis Date: Tue, 7 Nov 2023 09:35:02 +0900 Subject: [PATCH] test: fix typo in method name --- 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 3855a4b85c94..0211dccacef6 100644 --- a/tests/system/HTTP/IncomingRequestTest.php +++ b/tests/system/HTTP/IncomingRequestTest.php @@ -518,7 +518,7 @@ public function testGetJsonVarReturnsNullFromNullBody(): void $this->assertNull($request->getJsonVar('myKey')); } - public function testgetJSONReturnsNullFromNullBody(): void + public function testGetJSONReturnsNullFromNullBody(): void { $config = new App(); $config->baseURL = 'http://example.com/';