summaryrefslogtreecommitdiff
path: root/jstests/mr_bigobject.js
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2011-01-21 07:58:02 -0500
committerEliot Horowitz <eliot@10gen.com>2011-01-21 07:58:02 -0500
commitaf54331c386668b05bc85a45fd8fba3cf97c6bed (patch)
treea47d7a91bd669fd930b21ef348214d78576ae84b /jstests/mr_bigobject.js
parentc31c7f322943034bd294993e832f51383799ee5f (diff)
downloadmongo-af54331c386668b05bc85a45fd8fba3cf97c6bed.tar.gz
fix a number of invalid assert.throws
Diffstat (limited to 'jstests/mr_bigobject.js')
-rw-r--r--jstests/mr_bigobject.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/mr_bigobject.js b/jstests/mr_bigobject.js
index aef17140db4..db4777f48b2 100644
--- a/jstests/mr_bigobject.js
+++ b/jstests/mr_bigobject.js
@@ -18,7 +18,7 @@ r = function( k , v ){
return 1;
}
-assert.throws( function(){ t.mapReduce( m , r , "mr_bigobject_out" ); } , "emit should fail" )
+assert.throws( function(){ t.mapReduce( m , r , "mr_bigobject_out" ); } , null , "emit should fail" )
m = function(){
emit( 1 , this.s );