From 98b14e34cae02787cd78e5513061ef8b00e9efbd Mon Sep 17 00:00:00 2001 From: Mine Starks Date: Thu, 20 Jul 2017 15:10:29 -0700 Subject: [PATCH] Fix quote styles to match --- src/harness/fourslash.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/harness/fourslash.ts b/src/harness/fourslash.ts index e5dc3b0023a..4d1e5d40f1e 100644 --- a/src/harness/fourslash.ts +++ b/src/harness/fourslash.ts @@ -2399,7 +2399,7 @@ namespace FourSlash { const sortedActualArray = actualTextArray.sort(); if (!ts.arrayIsEqualTo(sortedExpectedArray, sortedActualArray)) { this.raiseError( - `Actual text array doesn't match expected text array. \nActual: \n"${sortedActualArray.join("\n\n")}"\n---\nExpected: \n'${sortedExpectedArray.join("\n\n")}'`); + `Actual text array doesn't match expected text array. \nActual: \n'${sortedActualArray.join("\n\n")}'\n---\nExpected: \n'${sortedExpectedArray.join("\n\n")}'`); } }