From af2b5ac18d1ffd4d341a1fd1e79f1792c6cffec6 Mon Sep 17 00:00:00 2001 From: Daniel Opitz Date: Sun, 7 Jul 2024 14:45:47 +0200 Subject: [PATCH] Fix tests for PHP 8.3 --- tests/AppTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/AppTest.php b/tests/AppTest.php index 6b593a8ba..cd18bfd16 100644 --- a/tests/AppTest.php +++ b/tests/AppTest.php @@ -1737,7 +1737,7 @@ public function testRunWithoutPassingInServerRequest(): void }); $streamProphecy->eof()->willReturn(false); $streamProphecy->isSeekable()->willReturn(true); - $streamProphecy->rewind()->shouldBeCalled();; + $streamProphecy->rewind()->shouldBeCalled(); $responseProphecy = $this->prophesize(ResponseInterface::class); $responseProphecy->getBody()->willReturn($streamProphecy->reveal());