Skip to content

Commit

Permalink
try to fix windows issues attempt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
BruceGitHub committed May 28, 2022
1 parent 0160796 commit 62b57b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ReportOutputTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1504,8 +1504,8 @@ private function assertOutputPrettyPrintEquals(string $expected_output, string $

foreach ($asExpectedOutput as $line) {
$this->assertStringContainsString(
str_replace('\n', '', $line),
$asActualOutput
str_replace(PHP_EOL, '', $line),
str_replace(PHP_EOL, '', $asActualOutput),
);
}
}
Expand Down

0 comments on commit 62b57b6

Please sign in to comment.