summaryrefslogtreecommitdiff
path: root/jstests/aggregation/bugs/server9625.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/aggregation/bugs/server9625.js')
-rw-r--r--jstests/aggregation/bugs/server9625.js4
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