Skip to content

Commit

Permalink
test: use mustNotCall in test-http-eof-on-connect
Browse files Browse the repository at this point in the history
Confirm that callback is not being invoked in
test-http-eof-on-connect.js.

PR-URL: nodejs#13587
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
Trott committed Jun 12, 2017
1 parent b71d677 commit 77d575d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-http-eof-on-connect.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const http = require('http');
// It is separate from test-http-malformed-request.js because it is only
// reproduceable on the first packet on the first connection to a server.

const server = http.createServer(common.noop);
const server = http.createServer(common.mustNotCall());
server.listen(0);

server.on('listening', function() {
Expand Down

0 comments on commit 77d575d

Please sign in to comment.