We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3915d46 commit 0694a38Copy full SHA for 0694a38
1 file changed
src/harness/fourslash.ts
@@ -2355,7 +2355,7 @@ namespace FourSlash {
2355
private applyCodeActions(actions: ts.CodeAction[], index?: number): void {
2356
if (index === undefined) {
2357
if (!(actions && actions.length === 1)) {
2358
- this.raiseError(`Should find exactly one codefix, but ${actions ? actions.length : "none"} found. ${actions ? actions.map(a => `\r\n "${a.description}"`) : "" }`);
+ this.raiseError(`Should find exactly one codefix, but ${actions ? actions.length : "none"} found. ${actions ? actions.map(a => `${Harness.IO.newLine()} "${a.description}"`) : "" }`);
2359
}
2360
index = 0;
2361
0 commit comments