summaryrefslogtreecommitdiff
path: root/jstests/core/js3.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/js3.js')
-rw-r--r--jstests/core/js3.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/core/js3.js b/jstests/core/js3.js
index 4249ad6183d..97ed0bfb834 100644
--- a/jstests/core/js3.js
+++ b/jstests/core/js3.js
@@ -3,7 +3,7 @@ t = db.jstests_js3;
debug = function( s ){
//printjson( s );
-}
+};
for( z = 0; z < 2; z++ ) {
debug(z);
@@ -20,7 +20,7 @@ for( z = 0; z < 2; z++ ) {
assert( 33 == db.dbEval(function() { return 33; } ) );
- db.dbEval( function() { db.jstests_js3.save({i:-1, z:"server side"}) } );
+ db.dbEval( function() { db.jstests_js3.save({i:-1, z:"server side"}); } );
assert( t.findOne({i:-1}) );