From e391ff691597535846bab0de357f756ac7fe3313 Mon Sep 17 00:00:00 2001 From: Sebastian Krupinski Date: Thu, 30 Jul 2026 21:05:03 -0400 Subject: [PATCH] fix: test Signed-off-by: Sebastian Krupinski --- tests/php/Integration/IntegrationTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/php/Integration/IntegrationTestCase.php b/tests/php/Integration/IntegrationTestCase.php index b060d84..f6d945f 100644 --- a/tests/php/Integration/IntegrationTestCase.php +++ b/tests/php/Integration/IntegrationTestCase.php @@ -177,7 +177,7 @@ abstract class IntegrationTestCase extends TestCase // process-level error handler after the in-process request. $application = static::buildApplication(); try { - $response = $application->handleHttp($request); + $response = $application->runHttpRequest($request); } finally { $application->shutdown(); }