Skip to content

Commit 0b00172

Browse files
djmgittargos
authored andcommittedJun 14, 2018
test: removing unnecessary parameter from assert call
Removed unnecessary parameter from assert call in test/parallel/test-stream2-basic.js. Fixes: #21305 PR-URL: #21307 Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ujjwal Sharma <[email protected]>
1 parent 740d9f1 commit 0b00172

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎test/parallel/test-stream2-basic.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -212,10 +212,10 @@ class TestWriter extends EE {
212212
'xxxxx' ];
213213

214214
w[0].on('end', common.mustCall(function(received) {
215-
assert.deepStrictEqual(received, expect, 'first');
215+
assert.deepStrictEqual(received, expect);
216216
}));
217217
w[1].on('end', common.mustCall(function(received) {
218-
assert.deepStrictEqual(received, expect, 'second');
218+
assert.deepStrictEqual(received, expect);
219219
}));
220220

221221
r.pipe(w[0]);

0 commit comments

Comments
 (0)
Please sign in to comment.