Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Transport/AmqpExtIntegrationTest.php
Original file line number Diff line number Diff line change
@@ -208,7 +208,7 @@ private function waitForOutput(Process $process, string $output, $timeoutInSecon
$timedOutTime = time() + $timeoutInSeconds;

while (time() < $timedOutTime) {
if (0 === strpos($process->getOutput(), $output)) {
if (str_starts_with($process->getOutput(), $output)) {
return;
}

0 comments on commit 6273687

Please sign in to comment.