Skip to content

Commit

Permalink
test: fix quotes check on POSIX systems
Browse files Browse the repository at this point in the history
  • Loading branch information
owl-from-hogvarts committed Apr 15, 2021
1 parent f6b5b77 commit af96885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test-find-python.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function TestExecFile (optionsObj) {
}
} else if (
// DONE: map through argsExecutable to check that all args are equals
strictDeepEqual(args, this.argsExecutable.map((arg) => `"${arg}"`))
strictDeepEqual(args, this.win ? this.argsExecutable.map((arg) => `"${arg}"`) : this.argsExecutable)
) {
if (optionsObj ? optionsObj.checkingPyLauncher : false) {
if (
Expand Down

0 comments on commit af96885

Please sign in to comment.