Browse Source

fix

Reviewed-By: Fedor Indutny <fedor@indutny.com>
PR-URL: https://github.com/joyent/node/pull/25739
v0.12-staging
Fedor Indutny 10 years ago
parent
commit
b8d47a7b6f
  1. 7
      test/simple/test-tls-new-session-hang.js

7
test/simple/test-tls-new-session-hang.js

@ -25,10 +25,9 @@ var server = tls.createServer({
socket.destroySoon(); socket.destroySoon();
}); });
// Should not be actually called server.on('resumeSession', common.mustCall(function() {
server.on('resumeSession', function (id, callback) { // Should not be actually called
assert(false); }, 0));
});
server.listen(common.PORT, function() { server.listen(common.PORT, function() {
var client = tls.connect({ var client = tls.connect({

Loading…
Cancel
Save