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")}'`); } }