summaryrefslogtreecommitdiff
path: root/jstests/sharding/cleanup_orphaned.js
diff options
context:
space:
mode:
authorJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:27:20 -0500
committerJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:27:56 -0500
commit8c5ff5834ab1f61e68b7839cd99c3de1f87c2121 (patch)
treeef4d91cc230300a6a48eeeac696ca15df6db1212 /jstests/sharding/cleanup_orphaned.js
parent0875be78b405016736ff42e3a50166be7561c2f8 (diff)
downloadmongo-8c5ff5834ab1f61e68b7839cd99c3de1f87c2121.tar.gz
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/sharding/cleanup_orphaned.js')
-rw-r--r--jstests/sharding/cleanup_orphaned.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/jstests/sharding/cleanup_orphaned.js b/jstests/sharding/cleanup_orphaned.js
index bbe383b94ce..a63991f7a23 100644
--- a/jstests/sharding/cleanup_orphaned.js
+++ b/jstests/sharding/cleanup_orphaned.js
@@ -9,7 +9,9 @@ testCleanupOrphaned({
shardKey: {_id: 1},
keyGen: function() {
var ids = [];
- for (var i = -50; i < 50; i++) { ids.push({_id: i}); }
+ for (var i = -50; i < 50; i++) {
+ ids.push({_id: i});
+ }
return ids;
}
});