Skip to content

Commit

Permalink
test: pass cipher option in ssl matrix tests
Browse files Browse the repository at this point in the history
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 nodejs#14413).
  • Loading branch information
Julien Gilli committed Apr 9, 2015
1 parent 02a549e commit 203ec21
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/external/ssl-options/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,8 @@ function runClient(port, secureProtocol, secureOptions, ciphers) {
{
rejectUnauthorized: false,
secureProtocol: secureProtocol,
secureOptions: secureOptions
secureOptions: secureOptions,
ciphers: ciphers
},
function() {

Expand Down

0 comments on commit 203ec21

Please sign in to comment.