summaryrefslogtreecommitdiff
path: root/test/parallel/test-cli-syntax-piped-good.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-cli-syntax-piped-good.js')
-rw-r--r--test/parallel/test-cli-syntax-piped-good.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-cli-syntax-piped-good.js b/test/parallel/test-cli-syntax-piped-good.js
index b3467b0372..cdadf449d8 100644
--- a/test/parallel/test-cli-syntax-piped-good.js
+++ b/test/parallel/test-cli-syntax-piped-good.js
@@ -18,7 +18,7 @@ syntaxArgs.forEach(function(args) {
const stdin = 'throw new Error("should not get run");';
const c = spawnSync(node, args, { encoding: 'utf8', input: stdin });
- // no stdout or stderr should be produced
+ // No stdout or stderr should be produced
assert.strictEqual(c.stdout, '');
assert.strictEqual(c.stderr, '');