summaryrefslogtreecommitdiff
path: root/jstests/aggregation/testall.js
diff options
context:
space:
mode:
authorMatt Dannenberg <dannenberg.matt@gmail.com>2012-06-25 11:54:08 -0400
committerMathias Stearn <mathias@10gen.com>2012-07-03 18:52:38 -0400
commitd13d5f4016ae3857e719890e09a8aef8dd3c9a5c (patch)
tree519d32a36bf88cc301d209c23f34e3670a22695c /jstests/aggregation/testall.js
parent38d752f9c7c98ccd3b67965bc1a8b85bba8c2922 (diff)
downloadmongo-d13d5f4016ae3857e719890e09a8aef8dd3c9a5c.tar.gz
SERVER-6165 fix $mod to work with any numerictype
Diffstat (limited to 'jstests/aggregation/testall.js')
-rw-r--r--jstests/aggregation/testall.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/jstests/aggregation/testall.js b/jstests/aggregation/testall.js
index f503e179982..ff54b1c5be7 100644
--- a/jstests/aggregation/testall.js
+++ b/jstests/aggregation/testall.js
@@ -906,15 +906,15 @@ var p14 = db.runCommand(
var p14result = [
{
"_id" : ObjectId("4de54958bf1505139918fce6"),
- "theRemainder" : 0
+ "theRemainder" : NumberLong("0")
},
{
"_id" : ObjectId("4de54958bf1505139918fce7"),
- "theRemainder" : 0
+ "theRemainder" : NumberLong("0")
},
{
"_id" : ObjectId("4de54958bf1505139918fce8"),
- "theRemainder" : 2
+ "theRemainder" : NumberLong("2")
}
];