From 11dbbcb40e35259c89d012c9f129de4ed3482413 Mon Sep 17 00:00:00 2001 From: Fonata Date: Tue, 17 Sep 2019 08:12:53 +0200 Subject: [PATCH] Simplified code - the string content is exactly the same --- tests/methods/SaveTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/methods/SaveTest.php b/tests/methods/SaveTest.php index c3e75ac..ae83266 100644 --- a/tests/methods/SaveTest.php +++ b/tests/methods/SaveTest.php @@ -93,7 +93,7 @@ class SaveTest extends TestCase { public function testEncloseAllWithQuotes() { $this->csv->enclose_all = true; - $expected = "\"SMS\"\r\"0444\"\r\"5555\"\r"; + $expected = '"SMS"\r"0444"\r"5555"\r'; $this->saveAndCompare($expected); }