Skip to content

Commit

Permalink
tests(ci): fix build (#1840)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghermeto committed Jul 6, 2020
1 parent 885cecd commit 982c7f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/plugins/gzip.test.js
Expand Up @@ -106,7 +106,9 @@ describe('gzip parser', function() {
bodyStream.resume();
res.write('{"foo":"');
bodyStream.pipe(res);
next();
bodyStream.on('end', function() {
next();
});
});

var opts = {
Expand Down

0 comments on commit 982c7f8

Please sign in to comment.