Skip to content

Commit 1810288

Browse files
committed
Fix tests
1 parent ecf8751 commit 1810288

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/testRunner/unittests/tsserver/projectReferences.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ namespace ts.projectSystem {
8585
});
8686
const { file: _, ...renameTextOfMyConstInLib } = locationOfMyConstInLib;
8787
assert.deepEqual(response.locs, [
88-
{ file: myConstFile, locs: [{ start: myConstStart, end: myConstEnd }] },
89-
{ file: locationOfMyConstInLib.file, locs: [renameTextOfMyConstInLib] }
88+
{ file: locationOfMyConstInLib.file, locs: [renameTextOfMyConstInLib] },
89+
{ file: myConstFile, locs: [{ start: myConstStart, end: myConstEnd }] }
9090
]);
9191
});
9292
});

0 commit comments

Comments
 (0)