From 203ec21271ea6f124719fb5ab1f70fd8da924688 Mon Sep 17 00:00:00 2001 From: Julien Gilli Date: Wed, 8 Apr 2015 17:44:55 -0700 Subject: [PATCH] test: pass cipher option in ssl matrix tests This change fixes the problem where the cipher list that was setup for a given test was never passed to the client, triggering some false positives with the recent changes made to the ciphers list used by default (see https://github.com/joyent/node/pull/14413). --- test/external/ssl-options/test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/external/ssl-options/test.js b/test/external/ssl-options/test.js index f7e06c93dfa..1c58ab83005 100644 --- a/test/external/ssl-options/test.js +++ b/test/external/ssl-options/test.js @@ -340,7 +340,8 @@ function runClient(port, secureProtocol, secureOptions, ciphers) { { rejectUnauthorized: false, secureProtocol: secureProtocol, - secureOptions: secureOptions + secureOptions: secureOptions, + ciphers: ciphers }, function() {