diff options
author | Jonathan Abrahams <jonathan@mongodb.com> | 2016-03-09 12:17:50 -0500 |
---|---|---|
committer | Jonathan Abrahams <jonathan@mongodb.com> | 2016-03-09 12:18:14 -0500 |
commit | 4ae691e8edc87d0e3cfb633bb91c328426be007b (patch) | |
tree | 52079a593f54382ca13a2e741633eab1b6271893 /jstests/noPassthroughWithMongod/validate_command.js | |
parent | a025d43f3ce2efc1fb1282a718f5d286fa0a4dc1 (diff) | |
download | mongo-4ae691e8edc87d0e3cfb633bb91c328426be007b.tar.gz |
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/noPassthroughWithMongod/validate_command.js')
-rw-r--r-- | jstests/noPassthroughWithMongod/validate_command.js | 11 |
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 |