Skip to content

Commit

Permalink
bug fix to have load bar show during test discovery (microsoft#23537)
Browse files Browse the repository at this point in the history
  • Loading branch information
eleanorjboyd committed Jun 4, 2024
1 parent 629ca42 commit 4f9c709
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/testing/testController/controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export class PythonTestController implements ITestController, IExtensionSingleAc
if (workspace && workspace.uri) {
const testAdapter = this.testAdapters.get(workspace.uri);
if (testAdapter) {
testAdapter.discoverTests(
await testAdapter.discoverTests(
this.testController,
this.refreshCancellation.token,
this.pythonExecFactory,
Expand All @@ -282,7 +282,7 @@ export class PythonTestController implements ITestController, IExtensionSingleAc
if (workspace && workspace.uri) {
const testAdapter = this.testAdapters.get(workspace.uri);
if (testAdapter) {
testAdapter.discoverTests(
await testAdapter.discoverTests(
this.testController,
this.refreshCancellation.token,
this.pythonExecFactory,
Expand Down

0 comments on commit 4f9c709

Please sign in to comment.