test: Fix regression in tls test

Undefined reference, introduced by a77c29a.
This commit is contained in:
isaacs
2013-02-18 18:26:29 -08:00
parent a77c29a0f9
commit 7f303707d5

View File

@@ -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.