Skip to content

Commit 21c8bb6

Browse files
author
Benjamin Pasero
committed
💄
1 parent 8c71cf6 commit 21c8bb6

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/vs/base/test/common/cache.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import * as assert from 'assert';
99
import Cache from 'vs/base/common/cache';
1010
import { TPromise } from 'vs/base/common/winjs.base';
11-
import { timeout } from 'vs/base/common/async';
1211

1312
suite('Cache', () => {
1413

@@ -37,7 +36,7 @@ suite('Cache', () => {
3736

3837
const cache = new Cache(() => {
3938
counter1++;
40-
return timeout(1).then(() => counter2++);
39+
return TPromise.timeout(1).then(() => counter2++);
4140
});
4241

4342
assert.equal(counter1, 0);

0 commit comments

Comments
 (0)