From 23f534b7b7f439fc39755821ff99ac50fcc10765 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 21 Jan 2019 21:07:57 -0800 Subject: [PATCH] fix tests --- src/vs/editor/test/browser/services/openerService.test.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/vs/editor/test/browser/services/openerService.test.ts b/src/vs/editor/test/browser/services/openerService.test.ts index 9222455b70e..f5f29f651dd 100644 --- a/src/vs/editor/test/browser/services/openerService.test.ts +++ b/src/vs/editor/test/browser/services/openerService.test.ts @@ -79,12 +79,6 @@ suite('OpenerService', function () { const openerService = new OpenerService(editorService, commandService); - // unknown command - openerService.open(URI.parse('command:foobar')); - assert.equal(lastCommand, undefined); - assert.equal(editorService.lastInput.resource.toString(), 'command:foobar'); - assert.equal(editorService.lastInput.options!.selection, undefined); - const id = `aCommand${Math.random()}`; CommandsRegistry.registerCommand(id, function () { }); -- GitLab