Skip to content

Commit 54b1c34

Browse files
committed
Fix failing test
1 parent f3c5029 commit 54b1c34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/harness/unittests/typingsInstaller.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,12 +381,12 @@ namespace ts.projectSystem {
381381

382382
const p = projectService.externalProjects[0];
383383
projectService.checkNumberOfProjects({ externalProjects: 1 });
384-
checkProjectActualFiles(p, [file1.path, file2.path]);
384+
checkProjectActualFiles(p, [file2.path]);
385385

386386
installer.checkPendingCommands(/*expectedCount*/ 0);
387387

388388
checkNumberOfProjects(projectService, { externalProjects: 1 });
389-
checkProjectActualFiles(p, [file1.path, file2.path]);
389+
checkProjectActualFiles(p, [file2.path]);
390390
});
391391

392392
it("external project - with type acquisition, with only js, d.ts files", () => {

0 commit comments

Comments
 (0)