summaryrefslogtreecommitdiff
path: root/jstests/noPassthroughWithMongod/validate_command.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthroughWithMongod/validate_command.js')
-rw-r--r--jstests/noPassthroughWithMongod/validate_command.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/jstests/noPassthroughWithMongod/validate_command.js b/jstests/noPassthroughWithMongod/validate_command.js
index 6e243070142..9c52c9acad7 100644
--- a/jstests/noPassthroughWithMongod/validate_command.js
+++ b/jstests/noPassthroughWithMongod/validate_command.js
@@ -23,19 +23,18 @@
t = db.jstests_validate;
t.drop();
- for(var i = 0; i < count; i++){
- t.insert({x:i});
+ for (var i = 0; i < count; i++) {
+ t.insert({x: i});
}
- t.ensureIndex({x:1}, {name: "forward"});
- t.ensureIndex({x:-1}, {name: "reverse"});
-
+ t.ensureIndex({x: 1}, {name: "forward"});
+ t.ensureIndex({x: -1}, {name: "reverse"});
// TEST NORMAL VALIDATE
var output = t.validate();
testValidate(output);
// TEST FULL
- var output = t.validate({full:true});
+ var output = t.validate({full: true});
testValidate(output);
}()); \ No newline at end of file