summaryrefslogtreecommitdiff
path: root/jstests/multiVersion/index_value_empty_string_repl.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/multiVersion/index_value_empty_string_repl.js')
-rw-r--r--jstests/multiVersion/index_value_empty_string_repl.js42
1 files changed, 21 insertions, 21 deletions
diff --git a/jstests/multiVersion/index_value_empty_string_repl.js b/jstests/multiVersion/index_value_empty_string_repl.js
index be9db1db0af..1a638d92086 100644
--- a/jstests/multiVersion/index_value_empty_string_repl.js
+++ b/jstests/multiVersion/index_value_empty_string_repl.js
@@ -4,32 +4,32 @@
*/
(function() {
- "use strict";
- load('./jstests/multiVersion/libs/multi_rs.js');
+"use strict";
+load('./jstests/multiVersion/libs/multi_rs.js');
- const newVersion = "latest";
- const oldVersion = "last-stable";
+const newVersion = "latest";
+const oldVersion = "last-stable";
- const name = "index_value_empty_string_repl";
- let nodes = {
- n1: {binVersion: oldVersion},
- n2: {binVersion: newVersion, rsConfig: {priority: 0}},
- };
+const name = "index_value_empty_string_repl";
+let nodes = {
+ n1: {binVersion: oldVersion},
+ n2: {binVersion: newVersion, rsConfig: {priority: 0}},
+};
- const rst = new ReplSetTest({name: name, nodes: nodes, waitForKeys: true});
- rst.startSet();
- rst.initiate();
+const rst = new ReplSetTest({name: name, nodes: nodes, waitForKeys: true});
+rst.startSet();
+rst.initiate();
- const primary = rst.getPrimary();
- const testDB = primary.getDB('test');
+const primary = rst.getPrimary();
+const testDB = primary.getDB('test');
- assert.commandWorked(testDB.testColl.createIndex({x: ""}));
- rst.awaitReplication();
+assert.commandWorked(testDB.testColl.createIndex({x: ""}));
+rst.awaitReplication();
- rst.add({binVersion: newVersion, rsConfig: {priority: 0}});
- rst.reInitiate();
+rst.add({binVersion: newVersion, rsConfig: {priority: 0}});
+rst.reInitiate();
- rst.awaitSecondaryNodes();
- rst.awaitReplication();
- rst.stopSet();
+rst.awaitSecondaryNodes();
+rst.awaitReplication();
+rst.stopSet();
})();