Skip to content

Commit af96885

Browse files
test: fix quotes check on POSIX systems
1 parent f6b5b77 commit af96885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test-find-python.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function TestExecFile (optionsObj) {
7676
}
7777
} else if (
7878
// DONE: map through argsExecutable to check that all args are equals
79-
strictDeepEqual(args, this.argsExecutable.map((arg) => `"${arg}"`))
79+
strictDeepEqual(args, this.win ? this.argsExecutable.map((arg) => `"${arg}"`) : this.argsExecutable)
8080
) {
8181
if (optionsObj ? optionsObj.checkingPyLauncher : false) {
8282
if (

0 commit comments

Comments
 (0)