Skip to content

Commit

Permalink
fix appveyor issue
Browse files Browse the repository at this point in the history
  • Loading branch information
aminyazdanpanah committed Mar 11, 2019
1 parent 5932563 commit f33ee77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/AnalysisTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function testStringAnalysis()
$expected = str_replace("DIRECTORY_PATH", $this->src_dir, file_get_contents(__DIR__ . "/fixtures/streams/show_streams.raw"));

//just for appveyor build
$output = str_replace("\r\n",PHP_EOL, $output);
$output = str_replace("\r\n","\n", $output);

$this->assertEquals($expected, $output);
}
Expand Down

0 comments on commit f33ee77

Please sign in to comment.