summaryrefslogtreecommitdiff
path: root/cli/tests/node_compat/test/parallel/test-child-process-exec-cwd.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/node_compat/test/parallel/test-child-process-exec-cwd.js')
-rw-r--r--cli/tests/node_compat/test/parallel/test-child-process-exec-cwd.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/node_compat/test/parallel/test-child-process-exec-cwd.js b/cli/tests/node_compat/test/parallel/test-child-process-exec-cwd.js
index 97da31fc9..4bd394cca 100644
--- a/cli/tests/node_compat/test/parallel/test-child-process-exec-cwd.js
+++ b/cli/tests/node_compat/test/parallel/test-child-process-exec-cwd.js
@@ -42,5 +42,5 @@ if (common.isWindows) {
}
exec(pwdcommand, { cwd: dir }, common.mustSucceed((stdout, stderr) => {
- assert(stdout.startsWith(dir));
+ assert(stdout.toLowerCase().startsWith(dir));
}));