diff options
Diffstat (limited to 'jstests/core/eval9.js')
-rw-r--r-- | jstests/core/eval9.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/eval9.js b/jstests/core/eval9.js index 9c6642901e4..a6d8560416e 100644 --- a/jstests/core/eval9.js +++ b/jstests/core/eval9.js @@ -1,5 +1,5 @@ -a = [ 1 , "asd" , null , [ 2 , 3 ] , new Date() , { x : 1 } ] +a = [ 1 , "asd" , null , [ 2 , 3 ] , new Date() , { x : 1 } ]; for ( var i=0; i<a.length; i++ ){ var ret = db.eval( "function( a , i ){ return a[i]; }" , a , i ); |