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/aggregation/bugs/server9625.js | |
parent | a025d43f3ce2efc1fb1282a718f5d286fa0a4dc1 (diff) | |
download | mongo-4ae691e8edc87d0e3cfb633bb91c328426be007b.tar.gz |
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/aggregation/bugs/server9625.js')
-rw-r--r-- | jstests/aggregation/bugs/server9625.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/aggregation/bugs/server9625.js b/jstests/aggregation/bugs/server9625.js index 009f55b7ef0..4a525aba518 100644 --- a/jstests/aggregation/bugs/server9625.js +++ b/jstests/aggregation/bugs/server9625.js @@ -55,8 +55,8 @@ load('jstests/aggregation/extras/utils.js'); // These expressions are associative and commutative so inner expression can be combined with // outer. - testOp({$sum: ["$a", 2, 3, {$sum : [4, 5]}]}, 15); - testOp({$min: ["$a", 2, 3, {$min : [4, 5]}]}, 1); + testOp({$sum: ["$a", 2, 3, {$sum: [4, 5]}]}, 15); + testOp({$min: ["$a", 2, 3, {$min: [4, 5]}]}, 1); testOp({$max: ["$a", 2, 3, {$max: [4, 5]}]}, 5); // These expressions are not associative and commutative so inner expression cannot be combined |