Skip to content

Commit

Permalink
Code review revisions
Browse files Browse the repository at this point in the history
  • Loading branch information
zemccartney committed Nov 9, 2017
1 parent 90f9e67 commit bb70ac9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"items": "2.x.x"
},
"peerDependencies": {
"hapi": ">=10 <17"
"hapi": ">=10 <16"
},
"devDependencies": {
"boom": "5.x.x",
Expand Down
4 changes: 2 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ describe('Underdog', () => {
srv.stop(done);
});

request.on('push', () => new Error('Should not make it here'));
request.on('push', () => done(new Error('Should not make it here')));
});
});

Expand Down Expand Up @@ -531,7 +531,7 @@ describe('Underdog', () => {
srv.stop(done);
});

request.on('push', () => new Error('Should not make it here'));
request.on('push', () => done(new Error('Should not make it here')));
});
});

Expand Down

0 comments on commit bb70ac9

Please sign in to comment.