Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Mar 17, 2022
1 parent eea9c7e commit 02254fe
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/test/datascience/notebook/executionService.vscode.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -449,9 +449,6 @@ suite('DataScience - VSCode Notebook - (Execution) (slow)', function () {
return this.skip();
}
}
await Promise.all([waitForCellExecutionToComplete(cell3), waitForCellHavingOutput(cell3)]);

const sysExecutable = getCellOutputs(cell3).trim();

// On windows `!where python`, prints multiple items in the output (all executables found).
const cell1Output = getCellOutputs(cell1);
Expand All @@ -462,6 +459,8 @@ suite('DataScience - VSCode Notebook - (Execution) (slow)', function () {

await Promise.all([waitForCellExecutionToComplete(cell3), waitForCellHavingOutput(cell3)]);

const sysExecutable = getCellOutputs(cell3).trim();

// First path in PATH must be the directory where executable is located.
assert.ok(
areInterpreterPathsSame(shellExecutable.toLowerCase(), sysExecutable.toLowerCase()),
Expand Down

0 comments on commit 02254fe

Please sign in to comment.