Skip to content

Commit

Permalink
test: Fix regression in tls test
Browse files Browse the repository at this point in the history
Undefined reference, introduced by a77c29a.
  • Loading branch information
isaacs committed Feb 19, 2013
1 parent a77c29a commit 7f30370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/simple/test-tls-over-http-tunnel.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ proxy.listen(proxyPort, function() {
proxy.close();
server.close();
});
}).on('error', function() {
}).on('error', function(er) {
// We're ok with getting ECONNRESET in this test, but it's
// timing-dependent, and thus unreliable. Any other errors
// are just failures, though.
Expand Down

0 comments on commit 7f30370

Please sign in to comment.