summaryrefslogtreecommitdiff
path: root/jstests/ssl/ssl_fips.js
diff options
context:
space:
mode:
authorMike Grundy <michael.grundy@10gen.com>2016-02-04 12:31:28 -0500
committerMike Grundy <michael.grundy@10gen.com>2016-02-05 15:00:52 -0500
commit56aa683f83f8bda0a4e0f09566034f12f9a4d4d7 (patch)
tree594bdcce536ac08ee882fe86ac73aef61dea8e52 /jstests/ssl/ssl_fips.js
parentf48ed9956e605bfe9816cbaf045652d8e003897e (diff)
downloadmongo-56aa683f83f8bda0a4e0f09566034f12f9a4d4d7.tar.gz
SERVER-22341 fix jslint errors in jstests/ssl with eslint --fix
Diffstat (limited to 'jstests/ssl/ssl_fips.js')
-rw-r--r--jstests/ssl/ssl_fips.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/ssl/ssl_fips.js b/jstests/ssl/ssl_fips.js
index 2f52e0a27ae..2630377fe36 100644
--- a/jstests/ssl/ssl_fips.js
+++ b/jstests/ssl/ssl_fips.js
@@ -17,9 +17,9 @@ var mongo = runMongoProgram("mongo",
// if mongo shell didn't start/connect properly
if (mongo != 0) {
print("mongod failed to start, checking for FIPS support");
- mongoOutput = rawMongoProgramOutput()
+ mongoOutput = rawMongoProgramOutput();
assert(mongoOutput.match(/this version of mongodb was not compiled with FIPS support/) ||
- mongoOutput.match(/FIPS_mode_set:fips mode not supported/))
+ mongoOutput.match(/FIPS_mode_set:fips mode not supported/));
}
else {
// verify that auth works, SERVER-18051