diff --git a/src/vs/editor/test/browser/controller/cursor.test.ts b/src/vs/editor/test/browser/controller/cursor.test.ts index 7a2daec0163ef7b22195d066588222e07b4568d0..9dc368f69985bf58066d8a4eabdbc152f71dd14e 100644 --- a/src/vs/editor/test/browser/controller/cursor.test.ts +++ b/src/vs/editor/test/browser/controller/cursor.test.ts @@ -4,7 +4,6 @@ *--------------------------------------------------------------------------------------------*/ import * as assert from 'assert'; -import * as platform from 'vs/base/common/platform'; import { CoreEditingCommands, CoreNavigationCommands } from 'vs/editor/browser/controller/coreCommands'; import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; import { EditOperation } from 'vs/editor/common/core/editOperation'; @@ -169,11 +168,6 @@ suite('Editor Controller - Cursor', () => { test('cursor initialized', () => { runTest((editor, viewModel) => { assertCursor(viewModel, new Position(1, 1)); - - // TODO: intentionally fail on Linux to test issue creation - if (platform.isLinux) { - assert.ok(false); - } }); });