Skip to content

Commit f25674a

Browse files
committed
Chore: Use correct CRLF expectation in tests
1 parent 86bd896 commit f25674a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/suite/lib/selectionHelpers.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ describe('Selection Helpers', function () {
6666
);
6767
let crlfDocument = await vscode.workspace.openTextDocument(uri);
6868

69-
assert.equal('def polish\n\r puts "Polishing"\n\rend', adjustIndentationInSelection(crlfDocument, [1, 2, 3], 2));
69+
assert.equal('def polish\r\n puts "Polishing"\r\nend', adjustIndentationInSelection(crlfDocument, [1, 2, 3], 2));
7070
});
7171
});
7272
});

0 commit comments

Comments
 (0)