Skip to content

Commit

Permalink
Remove error checks
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed May 27, 2019
1 parent 68f7836 commit 6275be6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/browser/test-stream-pipeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ module.exports = function (t) {
t.throws(function () {
pipeline(_read, function () {
});
}, /ERR_MISSING_ARGS/);
});
t.throws(function () {
pipeline(function () {
});
}, /ERR_MISSING_ARGS/);
});
t.throws(function () {
pipeline();
}, /ERR_MISSING_ARGS/);
});
t.end();
});
t.test('pipeline error', function (t) {
Expand Down

0 comments on commit 6275be6

Please sign in to comment.