aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-crypto.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-01-30 15:43:38 -0800
committerJames M Snell <jasnell@gmail.com>2016-02-01 08:51:28 -0800
commit2c97bd47e40aedf932f7f4392f446da63d679d1a (patch)
tree38f0f488d3320d6f2abbe4659f976cd5e36b0b1f /test/parallel/test-crypto.js
parentf7feab5b3b6dfe9c7ce28a651d3318cfe5f71412 (diff)
downloadandroid-node-v8-2c97bd47e40aedf932f7f4392f446da63d679d1a.tar.gz
android-node-v8-2c97bd47e40aedf932f7f4392f446da63d679d1a.tar.bz2
android-node-v8-2c97bd47e40aedf932f7f4392f446da63d679d1a.zip
test: remove var redeclarations in test-crypto-*
PR-URL: https://github.com/nodejs/node/pull/4981 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/parallel/test-crypto.js')
-rw-r--r--test/parallel/test-crypto.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/parallel/test-crypto.js b/test/parallel/test-crypto.js
index df59fd9bde..192e4287c4 100644
--- a/test/parallel/test-crypto.js
+++ b/test/parallel/test-crypto.js
@@ -67,7 +67,6 @@ assert.equal(-1, crypto.getCiphers().indexOf('AES-128-CBC'));
assertSorted(crypto.getCiphers());
// Assume that we have at least AES256-SHA.
-var tls = require('tls');
assert.notEqual(0, tls.getCiphers().length);
assert.notEqual(-1, tls.getCiphers().indexOf('aes256-sha'));
assert.equal(-1, tls.getCiphers().indexOf('AES256-SHA'));