summaryrefslogtreecommitdiff
path: root/jstests/core/mr_optim.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/mr_optim.js')
-rw-r--r--jstests/core/mr_optim.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/core/mr_optim.js b/jstests/core/mr_optim.js
index 164839e2f2c..65550d1c841 100644
--- a/jstests/core/mr_optim.js
+++ b/jstests/core/mr_optim.js
@@ -31,7 +31,7 @@ function reformat( r ){
}
res = t.mapReduce( m , r , { out : "mr_optim_out" } );
-printjson( res )
+printjson( res );
x = reformat( res );
for (var key in x) {
assert.eq(x[key], 13, "value is not equal to original, maybe reduce has run");
@@ -43,6 +43,6 @@ res = t.mapReduce( m , r , { out : { inline : 1 } } );
x2 = reformat( res );
res.drop();
-assert.eq(x, x2, "object from inline and collection are not equal")
+assert.eq(x, x2, "object from inline and collection are not equal");
t.drop(); \ No newline at end of file