summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-close-notify.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-tls-close-notify.js')
-rw-r--r--test/parallel/test-tls-close-notify.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-tls-close-notify.js b/test/parallel/test-tls-close-notify.js
index 54f7314e2f..c5decad5e5 100644
--- a/test/parallel/test-tls-close-notify.js
+++ b/test/parallel/test-tls-close-notify.js
@@ -17,8 +17,8 @@ var server = tls.createServer({
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
}, function(c) {
// Send close-notify without shutting down TCP socket
- if (c.ssl.shutdown() !== 1)
- c.ssl.shutdown();
+ if (c._handle.shutdownSSL() !== 1)
+ c._handle.shutdownSSL();
}).listen(common.PORT, function() {
var c = tls.connect(common.PORT, {
rejectUnauthorized: false