Merge pull request #17302 from minestarks/removeimportfix

Bugs in missing import codefix
This commit is contained in:
Mine Starks
2017-07-21 10:22:24 -07:00
committed by GitHub
6 changed files with 198 additions and 26 deletions

View File

@@ -2405,7 +2405,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")}'`);
}
}