From 0888cdd4123e80fcb859d90808bd6cc708eec3d6 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Fri, 18 May 2012 02:02:57 +0200 Subject: [PATCH] test: fix bad comment --- test/simple/test-cli-eval.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/simple/test-cli-eval.js b/test/simple/test-cli-eval.js index 4c6b518b23..b47cc141ff 100644 --- a/test/simple/test-cli-eval.js +++ b/test/simple/test-cli-eval.js @@ -46,7 +46,7 @@ child.exec(nodejs + ' --eval "console.error(42)"', assert.equal(stderr, '42\n'); }); -// assert that nothing is written to stdout +// assert that the expected output is written to stdout ['--print --eval', '-p -e', '-pe'].forEach(function(s) { var cmd = nodejs + ' ' + s + ' ';