Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit bd29fc3

Browse files
committed
test: correct types in test
1 parent 454a666 commit bd29fc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/typescript-service-helpers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2409,7 +2409,7 @@ export function describeTypeScriptService(createService: TypeScriptServiceFactor
24092409
character: 6
24102410
},
24112411
newName: 'B'
2412-
}).reduce<Operation, Location[]>(applyReducer, null as any).toPromise();
2412+
}).reduce<Operation, WorkspaceEdit>(applyReducer, null as any).toPromise();
24132413
assert.deepEqual(result, {
24142414
changes: {
24152415
[rootUri + 'a.ts']: [{
@@ -2450,7 +2450,7 @@ export function describeTypeScriptService(createService: TypeScriptServiceFactor
24502450
character: 16
24512451
},
24522452
newName: 'f'
2453-
}).reduce<Operation, Location[]>(applyReducer, null as any).toPromise();
2453+
}).reduce<Operation, WorkspaceEdit>(applyReducer, null as any).toPromise();
24542454
assert.deepEqual(result, {
24552455
changes: {
24562456
[rootUri + 'import.ts']: [{

0 commit comments

Comments
 (0)