Skip to content

Commit 1e6fe56

Browse files
StefanStojanovicdanielleadams
authored andcommitted
test: fix test-child-process-exec-cwd
Refs: #47020 Refs: nodejs/build#3046 PR-URL: #47235 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Debadree Chatterjee <[email protected]>
1 parent faabd48 commit 1e6fe56

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

test/parallel/parallel.status

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ test-child-process-stdio-reuse-readable-stdio: PASS, FLAKY
1919

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

2423
[$system==linux]
2524
# https://github.com/nodejs/node/issues/39368

test/parallel/test-child-process-exec-cwd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ if (common.isWindows) {
3535
}
3636

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

0 commit comments

Comments
 (0)