Skip to content

Commit

Permalink
test: fix pummel/test-exec
Browse files Browse the repository at this point in the history
Fix test/pummel/test-exec.js which broke as a result of
e47f972
(nodejs#24951).

(Until very recently, pummel tests were not run at all in CI and
currently only run nightly on master.)
  • Loading branch information
Trott committed Jan 24, 2019
1 parent 47062f1 commit d78f29d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/pummel/test-exec.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ exec('python -c "print 200000*\'C\'"', { maxBuffer: 1000 },
function(err, stdout, stderr) {
assert.ok(err);
assert.ok(/maxBuffer/.test(err.message));
assert.strictEqual(stdout, '');
assert.strictEqual(stdout, 'C'.repeat(1000));
assert.strictEqual(stderr, '');
});

Expand Down

0 comments on commit d78f29d

Please sign in to comment.