From e5ff72f890a8dee7f86c13c793c6bba72900ee30 Mon Sep 17 00:00:00 2001 From: Dirk Baeumer Date: Thu, 26 May 2016 15:59:16 +0200 Subject: [PATCH] Fixed compile error in cursor.test.ts --- src/vs/editor/test/common/controller/cursor.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/editor/test/common/controller/cursor.test.ts b/src/vs/editor/test/common/controller/cursor.test.ts index 0d53623a89f..dc710cbf800 100644 --- a/src/vs/editor/test/common/controller/cursor.test.ts +++ b/src/vs/editor/test/common/controller/cursor.test.ts @@ -1468,7 +1468,7 @@ suite('Editor Controller - Regression tests', () => { test('issue #4312: trying to type a tab character over a sequence of spaces results in unexpected behaviour', () => { usingCursor({ text: [ - 'var foo = 123; // this is a comment' + 'var foo = 123; // this is a comment', 'var bar = 4; // another comment' ], modelOpts: { insertSpaces: false, tabSize: 4, detectIndentation: false, defaultEOL: DefaultEndOfLine.LF, trimAutoWhitespace: true } -- GitLab