summaryrefslogtreecommitdiff
path: root/jstests/sharding/write_cmd_auto_split.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/sharding/write_cmd_auto_split.js')
-rw-r--r--jstests/sharding/write_cmd_auto_split.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/jstests/sharding/write_cmd_auto_split.js b/jstests/sharding/write_cmd_auto_split.js
index 799c36cc3aa..dc8abc71597 100644
--- a/jstests/sharding/write_cmd_auto_split.js
+++ b/jstests/sharding/write_cmd_auto_split.js
@@ -1,13 +1,14 @@
/**
* Tests the auto split will be triggered when using write commands.
*/
+(function() {
+'use strict';
var st = new ShardingTest({ shards: 1, other: { chunkSize: 1 }});
-st.stopBalancer();
var configDB = st.s.getDB('config');
-configDB.adminCommand({ enableSharding: 'test' });
-configDB.adminCommand({ shardCollection: 'test.insert', key: { x: 1 }});
+assert.commandWorked(configDB.adminCommand({ enableSharding: 'test' }));
+assert.commandWorked(configDB.adminCommand({ shardCollection: 'test.insert', key: { x: 1 }}));
var doc1k = (new Array(1024)).join('x');
var testDB = st.s.getDB('test');
@@ -151,3 +152,4 @@ assert.eq(1, configDB.chunks.find().itcount());
st.stop();
+})();