Failing integration test: vscode API - globalState / workspaceState (fix #208134) (#208756)

This commit is contained in:
Benjamin Pasero 2024-03-26 07:53:08 +01:00 committed by GitHub
parent c972b16a33
commit 099c39eb5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,7 +36,7 @@ suite('vscode API - globalState / workspaceState', () => {
await state.update('state.test.get', undefined);
keys = state.keys();
assert.strictEqual(keys.length, 0);
assert.strictEqual(keys.length, 0, `Unexpected keys: ${JSON.stringify(keys)}`);
res = state.get('state.test.get', 'default');
assert.strictEqual(res, 'default');