From 5d37aa1b4f03e5e09b52ec55e2d915e751060a7d Mon Sep 17 00:00:00 2001 From: Dmitriy Derepko Date: Tue, 24 Dec 2024 10:44:25 +0300 Subject: [PATCH] Update tests/RoadRunnerHttpApplicationRunnerTest.php --- tests/RoadRunnerHttpApplicationRunnerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/RoadRunnerHttpApplicationRunnerTest.php b/tests/RoadRunnerHttpApplicationRunnerTest.php index c5deb71..bfc90ec 100644 --- a/tests/RoadRunnerHttpApplicationRunnerTest.php +++ b/tests/RoadRunnerHttpApplicationRunnerTest.php @@ -57,7 +57,7 @@ public function testUnsupportedMode(): void $runner = $this->createRunner(); $this->expectException(RuntimeException::class); - $this->expectExceptionMessage('Unsupported mode "invalid", modes are supported: "http", "temporal".'); + $this->expectExceptionMessage('Unsupported mode "invalid", supported modes are: "http", "temporal".'); $runner->run(); }