Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix newlines in smartSelection baselines to not be platform dependent (
  • Loading branch information
rbuckton committed May 17, 2019
1 parent 15daf42 commit f4b83ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/harness/fourslash.ts
Expand Up @@ -1503,7 +1503,7 @@ Actual: ${stringify(fullActual)}`);
}

public baselineSmartSelection() {
const n = ts.sys.newLine;
const n = "\n";
const baselineFile = this.getBaselineFileName();
const markers = this.getMarkers();
const fileContent = this.activeFile.content;
Expand Down

0 comments on commit f4b83ef

Please sign in to comment.