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

@@ -24,7 +24,7 @@ suite('workspace-namespace', () => {
assert.equal(config['config0'], true);
assert.equal(config['config4'], '');
assert.throws(() => config['config4'] = 'valuevalue');
assert.throws(() => (<any>config)['config4'] = 'valuevalue');
assert.ok(config.has('nested.config1'));
assert.equal(config.get('nested.config1'), 42);