summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/bind_all_ipv6.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthrough/bind_all_ipv6.js')
-rw-r--r--jstests/noPassthrough/bind_all_ipv6.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/jstests/noPassthrough/bind_all_ipv6.js b/jstests/noPassthrough/bind_all_ipv6.js
index 9e47ccd5796..9663f964118 100644
--- a/jstests/noPassthrough/bind_all_ipv6.js
+++ b/jstests/noPassthrough/bind_all_ipv6.js
@@ -1,10 +1,10 @@
// Startup with --bind_ip_all and --ipv6 should not fail with address already in use.
(function() {
- 'use strict';
+'use strict';
- const mongo = MongoRunner.runMongod({ipv6: "", bind_ip_all: ""});
- assert(mongo !== null, "Database is not running");
- assert.commandWorked(mongo.getDB("test").isMaster(), "isMaster failed");
- MongoRunner.stopMongod(mongo);
+const mongo = MongoRunner.runMongod({ipv6: "", bind_ip_all: ""});
+assert(mongo !== null, "Database is not running");
+assert.commandWorked(mongo.getDB("test").isMaster(), "isMaster failed");
+MongoRunner.stopMongod(mongo);
}());