Skip to content

Commit 6236f65

Browse files
committed
fix tests wait more than input time interval
1 parent 403be36 commit 6236f65

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/platform/userDataSync/test/common/userDataSyncStoreService.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,14 +348,14 @@ suite('UserDataSyncRequestsSession', () => {
348348
test('requests are handled after session is expired', async () => {
349349
const testObject = new RequestsSession(1, 100, requestService, NullTelemetryService);
350350
await testObject.request({}, CancellationToken.None);
351-
await timeout(100);
351+
await timeout(150);
352352
await testObject.request({}, CancellationToken.None);
353353
});
354354

355355
test('too many requests are thrown after session is expired', async () => {
356356
const testObject = new RequestsSession(1, 100, requestService, NullTelemetryService);
357357
await testObject.request({}, CancellationToken.None);
358-
await timeout(100);
358+
await timeout(150);
359359
await testObject.request({}, CancellationToken.None);
360360

361361
try {

0 commit comments

Comments
 (0)