More deprecated assertion cleanup

This commit is contained in:
Logan Ramos
2021-05-04 15:55:14 -04:00
parent af69dc26ca
commit 656e1e6086
6 changed files with 52 additions and 52 deletions

View File

@@ -15,7 +15,7 @@ suite('vscode API - configuration', () => {
test('configurations, language defaults', function () {
const defaultLanguageSettings = vscode.workspace.getConfiguration().get('[abcLang]');
assert.deepEqual(defaultLanguageSettings, {
assert.deepStrictEqual(defaultLanguageSettings, {
'editor.lineNumbers': 'off',
'editor.tabSize': 2
});
@@ -43,7 +43,7 @@ suite('vscode API - configuration', () => {
assert.ok(config.has('get'));
assert.strictEqual(config.get('get'), 'get-prop');
assert.deepEqual(config['get'], config.get);
assert.deepStrictEqual(config['get'], config.get);
assert.throws(() => config['get'] = <any>'get-prop');
});
});