From ee34dcaedb1af465124a8fb72135ee5dd0e32b7f Mon Sep 17 00:00:00 2001 From: kenjis <kenji.uui@gmail.com> Date: Tue, 7 Nov 2023 09:36:46 +0900 Subject: [PATCH] test: rename test method --- 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 0211dccacef6..4830837c1fb6 100644 --- a/tests/system/HTTP/IncomingRequestTest.php +++ b/tests/system/HTTP/IncomingRequestTest.php @@ -847,7 +847,7 @@ public function testGetPostSecondStreams(): void $this->assertSame(array_merge($_POST, $_GET), $this->request->getGetPost()); } - public function testWithFalseBody(): void + public function testGetBodyWithFalseBody(): void { // Use `false` here to simulate file_get_contents returning a false value $request = $this->createRequest(null, false);