Skip to content

Commit e0b51da

Browse files
Merge pull request #57 from gjsjohnmurray/fix-56
Fix subfolder of Server Tests spinning endlessly when expanding
2 parents f8ec9d5 + 81da1d7 commit e0b51da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/serverTests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async function resolveItemChildren(item?: OurTestItem) {
2929
fullClassName,
3030
vscode.Uri.from({
3131
scheme: item.uri?.scheme === "isfs" ? "isfs" : "isfs-readonly",
32-
authority: item.id.toLowerCase(),
32+
authority: parts.slice(1).join(":").toLowerCase(),
3333
path: "/" + fullClassName.replace(/\./g, "/") + ".cls",
3434
query: item.uri?.query
3535
})

0 commit comments

Comments
 (0)