Skip to content

Commit

Permalink
SERVER-22341 fix jslint errors in jstests/sslSpecial with eslint --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Grundy committed Feb 5, 2016
1 parent 56aa683 commit f541080
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jstests/sslSpecial/mixed_mode_repl_nossl.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* mixed modes can still function
*/

load("jstests/ssl/libs/ssl_helpers.js")
load("jstests/ssl/libs/ssl_helpers.js");

// Verify that disabled allows non-ssl connections
print("=== Testing disabled cluster ===");
Expand Down
4 changes: 2 additions & 2 deletions jstests/sslSpecial/upgrade_to_x509_ssl_nossl.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ function authAllNodes() {
var status = rst.nodes[n].getDB("admin").auth("root", "pwd");
assert.eq(status, 1);
}
};
}

opts = {sslMode:"disabled", clusterAuthMode:"keyFile", keyFile: KEYFILE}
opts = {sslMode:"disabled", clusterAuthMode:"keyFile", keyFile: KEYFILE};
var NUM_NODES = 3;
var rst = new ReplSetTest({ name: 'sslSet', nodes: NUM_NODES, nodeOptions : opts });
rst.startSet();
Expand Down

0 comments on commit f541080

Please sign in to comment.