summaryrefslogtreecommitdiff
path: root/test/simple/test-tls-getcipher.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/simple/test-tls-getcipher.js')
-rw-r--r--test/simple/test-tls-getcipher.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/simple/test-tls-getcipher.js b/test/simple/test-tls-getcipher.js
index 8fb9d5287..22a280e58 100644
--- a/test/simple/test-tls-getcipher.js
+++ b/test/simple/test-tls-getcipher.js
@@ -49,7 +49,7 @@ server.listen(common.PORT, '127.0.0.1', function() {
rejectUnauthorized: false
}, function() {
var cipher = client.getCipher();
- assert.equal(cipher.name, cipher_list[1]);
+ assert.equal(cipher.name, cipher_list[0]);
assert(cipher_version_pattern.test(cipher.version));
client.end();
server.close();