Skip to content

Commit 7c3c879

Browse files
committed
fix
1 parent 34965e3 commit 7c3c879

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/testing/testController/controller.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ suite('PythonTestController', () => {
311311

312312
// Should only create adapters for the 2 projects in the workspace (not 'other')
313313
assert.strictEqual(projects.length, 2);
314-
const projectUris = projects.map((p) => p.projectUri.fsPath);
314+
const projectUris = projects.map((p: { projectUri: { fsPath: string } }) => p.projectUri.fsPath);
315315
assert.ok(projectUris.includes('/workspace/root/p1'));
316316
assert.ok(projectUris.includes('/workspace/root/nested/p2'));
317317
assert.ok(!projectUris.includes('/other/root/p3'));

0 commit comments

Comments
 (0)