summaryrefslogtreecommitdiff
path: root/jstests/core/find6.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/find6.js')
-rw-r--r--jstests/core/find6.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/core/find6.js b/jstests/core/find6.js
index c4efd3b88d3..0739c38aa9f 100644
--- a/jstests/core/find6.js
+++ b/jstests/core/find6.js
@@ -2,8 +2,8 @@
t = db.find6;
t.drop();
-t.save( { a : 1 } )
-t.save( { a : 1 , b : 1 } )
+t.save( { a : 1 } );
+t.save( { a : 1 , b : 1 } );
assert.eq( 2 , t.find().count() , "A" );
assert.eq( 1 , t.find( { b : null } ).count() , "B" );