Skip to content

Commit 91ec893

Browse files
committed
windows has more common properties, fix test failure
1 parent eda6b31 commit 91ec893

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/telemetry/test/node/commonProperties.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ suite('Telemetry - common properties', function () {
1515

1616
return resolveCommonProperties(new TestStorageService(), new TestContextService()).then(props => {
1717

18-
assert.equal(Object.keys(props).length, 15);
18+
assert.equal(Object.keys(props).length, process.platform === 'win32' ? 17 : 15);
1919

2020
assert.ok('commitHash' in props);
2121
assert.ok('sessionID' in props);

0 commit comments

Comments
 (0)