Skip to content

Commit ca4bfa9

Browse files
committed
fixup! src: fix escaping of single quotes in task runner
1 parent eaa7605 commit ca4bfa9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/parallel/test-node-run.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ describe('node --run [command]', () => {
147147
{ cwd: fixtures.path('run-script') },
148148
);
149149
if (common.isWindows) {
150-
assert.match(child.stdout, /Arguments: '--help ""hello world test"" A B C "I think therefore I'm"'/);
150+
assert.match(child.stdout, /Arguments: '--help ""hello world test"" A B C I think therefore I'm'/);
151151
} else {
152152
assert.match(child.stdout, /Arguments: '--help "hello world test" A B C I think therefore I'm'/);
153153
}

0 commit comments

Comments
 (0)