fix compile errors

This commit is contained in:
Benjamin Pasero
2017-01-09 18:13:23 +01:00
parent 8b5b22fa50
commit f9ce2e16fc
2 changed files with 2 additions and 2 deletions

View File

@@ -315,7 +315,7 @@ suite('window namespace tests', () => {
assert.equal(terminal.name, 'foo');
assert.throws(() => {
terminal.name = 'bar';
(<any>terminal).name = 'bar';
}, 'Terminal.name should be readonly');
});