From b559b9ba53c7efc2521a503c2a6312d5e0569cd7 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Fri, 25 Feb 2011 13:56:09 +1300 Subject: [PATCH] MINOR Fixed broken CSVParserTest on Windows because of newline character differences --- tests/dev/CSVParserTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/dev/CSVParserTest.php b/tests/dev/CSVParserTest.php index 384a96035..8033cf3cb 100644 --- a/tests/dev/CSVParserTest.php +++ b/tests/dev/CSVParserTest.php @@ -19,7 +19,7 @@ class CSVParserTest extends SapphireTest { $this->assertEquals(array( "He's a good guy", - "She is awesome.\nSo awesome that she gets multiple rows and \"escaped\" strings in her biography", + sprintf("She is awesome.%sSo awesome that she gets multiple rows and \"escaped\" strings in her biography", PHP_EOL), "Pretty old, with an escaped comma", "Unicode FTW"), $biographies); $this->assertEquals(array("31/01/1988","31/01/1982","31/01/1882","31/06/1982"), $birthdays); @@ -49,7 +49,7 @@ class CSVParserTest extends SapphireTest { $this->assertEquals(array('John','Jane','Jamie','Järg'), $firstNames); $this->assertEquals(array( "He's a good guy", - "She is awesome.\nSo awesome that she gets multiple rows and \"escaped\" strings in her biography", + sprintf("She is awesome.%sSo awesome that she gets multiple rows and \"escaped\" strings in her biography", PHP_EOL), "Pretty old, with an escaped comma", "Unicode FTW"), $biographies); $this->assertEquals(array("31/01/1988","31/01/1982","31/01/1882","31/06/1982"), $birthdays); @@ -77,7 +77,7 @@ class CSVParserTest extends SapphireTest { $this->assertEquals(array( 'Biography', "He's a good guy", - "She is awesome.\nSo awesome that she gets multiple rows and \"escaped\" strings in her biography", + sprintf("She is awesome.%sSo awesome that she gets multiple rows and \"escaped\" strings in her biography", PHP_EOL), "Pretty old, with an escaped comma", "Unicode FTW"), $biographies); $this->assertEquals(array("Birthday","31/01/1988","31/01/1982","31/01/1882","31/06/1982"), $birthdays);