Skip to content

Commit a9ffce9

Browse files
TrottMylesBorins
authored andcommitted
test: fix pummel/test-exec
Fix test/pummel/test-exec.js which broke as a result of e47f972 (#24951). (Until very recently, pummel tests were not run at all in CI and currently only run nightly on master.) PR-URL: #25677 Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Anto Aravinth <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
1 parent 08ade9b commit a9ffce9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/pummel/test-exec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ exec('python -c "print 200000*\'C\'"', { maxBuffer: 1000 },
122122
function(err, stdout, stderr) {
123123
assert.ok(err);
124124
assert.ok(/maxBuffer/.test(err.message));
125-
assert.strictEqual(stdout, '');
125+
assert.strictEqual(stdout, 'C'.repeat(1000));
126126
assert.strictEqual(stderr, '');
127127
});
128128

0 commit comments

Comments
 (0)