Skip to content

Commit

Permalink
Fix tests for PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
odan committed Jul 7, 2024
1 parent addacc1 commit af2b5ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/AppTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit af2b5ac

Please sign in to comment.