Skip to content

Commit

Permalink
style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cjihrig committed Oct 30, 2015
1 parent 635089b commit 05f6a26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ describe('Route', () => {

it('skips inner extensions when not found', (done) => {

var server = new Hapi.Server();
const server = new Hapi.Server();
server.connection();

let state = '';
Expand Down
3 changes: 2 additions & 1 deletion test/transmit.js
Original file line number Diff line number Diff line change
Expand Up @@ -1682,7 +1682,8 @@ describe('transmission', () => {
stream.emit('data', chunk);
stream.readable = false;
stream.emit('end');
} else {
}
else {
stream.emit('data', chunk);
_read();
}
Expand Down

0 comments on commit 05f6a26

Please sign in to comment.