Skip to content

Commit 9b78d87

Browse files
committed
updates to tests based on copilot feedback
1 parent e03f10b commit 9b78d87

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/test/integration/pythonProjects.integration.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ async function setEnvironmentAndWaitForChange(
4242
let subscription: vscode.Disposable | undefined;
4343
const timeout = setTimeout(() => {
4444
subscription?.dispose();
45-
reject(new Error(`onDidChangeEnvironment did not fire within ${timeoutMs}ms. Expected envId: ${env.envId.id}`));
45+
reject(
46+
new Error(`onDidChangeEnvironment did not fire within ${timeoutMs}ms. Expected envId: ${env.envId.id}`),
47+
);
4648
}, timeoutMs);
4749

4850
subscription = api.onDidChangeEnvironment((e) => {

0 commit comments

Comments
 (0)