Skip to content

Commit 099c39e

Browse files
authored
Failing integration test: vscode API - globalState / workspaceState (fix microsoft#208134) (microsoft#208756)
1 parent c972b16 commit 099c39e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/vscode-api-tests/src/singlefolder-tests/state.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ suite('vscode API - globalState / workspaceState', () => {
3636
await state.update('state.test.get', undefined);
3737

3838
keys = state.keys();
39-
assert.strictEqual(keys.length, 0);
39+
assert.strictEqual(keys.length, 0, `Unexpected keys: ${JSON.stringify(keys)}`);
4040

4141
res = state.get('state.test.get', 'default');
4242
assert.strictEqual(res, 'default');

0 commit comments

Comments
 (0)