Skip to content

Commit

Permalink
test: fix test-child-process-exec-cwd
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanStojanovic committed Mar 23, 2023
1 parent 8200304 commit 5cc22ee
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion test/parallel/parallel.status
Expand Up @@ -16,7 +16,6 @@ test-fs-rmdir-recursive: PASS, FLAKY

# Windows on ARM
[$system==win32 && $arch==arm64]
test-child-process-exec-cwd: SKIP

[$system==linux]
# https://github.com/nodejs/node/issues/39368
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-child-process-exec-cwd.js
Expand Up @@ -35,5 +35,5 @@ if (common.isWindows) {
}

exec(pwdcommand, { cwd: dir }, common.mustSucceed((stdout, stderr) => {
assert(stdout.startsWith(dir));
assert(stdout.toLowerCase().startsWith(dir));
}));

0 comments on commit 5cc22ee

Please sign in to comment.