Skip to content

Commit bacc894

Browse files
author
Benjamin Pasero
committed
fix compile errors
1 parent 4a411dc commit bacc894

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/test/electron-browser/api/extHostWorkspace.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ suite('ExtHostWorkspace', function () {
109109
let ws = new ExtHostWorkspace(new TestThreadService(), { id: 'foo', name: 'Test', roots: [] });
110110
let sub = ws.onDidChangeWorkspace(e => {
111111
assert.throws(() => {
112-
e.addedFolders = [];
112+
(<any>e).addedFolders = [];
113113
});
114114
assert.throws(() => {
115115
(<any>e.addedFolders)[0] = null;

0 commit comments

Comments
 (0)