From f33ee77e23a299ffd08af6d66c81e234b7285d0d Mon Sep 17 00:00:00 2001 From: Amin Date: Mon, 11 Mar 2019 23:08:55 +0330 Subject: [PATCH] fix appveyor issue --- tests/AnalysisTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/AnalysisTest.php b/tests/AnalysisTest.php index ad6a53c..ef52ad9 100644 --- a/tests/AnalysisTest.php +++ b/tests/AnalysisTest.php @@ -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); }