Skip to content

Commit 98b14e3

Browse files
committed
Fix quote styles to match
1 parent 15d294d commit 98b14e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/harness/fourslash.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2399,7 +2399,7 @@ namespace FourSlash {
23992399
const sortedActualArray = actualTextArray.sort();
24002400
if (!ts.arrayIsEqualTo(sortedExpectedArray, sortedActualArray)) {
24012401
this.raiseError(
2402-
`Actual text array doesn't match expected text array. \nActual: \n"${sortedActualArray.join("\n\n")}"\n---\nExpected: \n'${sortedExpectedArray.join("\n\n")}'`);
2402+
`Actual text array doesn't match expected text array. \nActual: \n'${sortedActualArray.join("\n\n")}'\n---\nExpected: \n'${sortedExpectedArray.join("\n\n")}'`);
24032403
}
24042404
}
24052405

0 commit comments

Comments
 (0)