summaryrefslogtreecommitdiff
path: root/jstests/core/count3.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/count3.js')
-rw-r--r--jstests/core/count3.js25
1 files changed, 11 insertions, 14 deletions
diff --git a/jstests/core/count3.js b/jstests/core/count3.js
index a8c3ef5faad..d93df020f0b 100644
--- a/jstests/core/count3.js
+++ b/jstests/core/count3.js
@@ -3,24 +3,21 @@ t = db.count3;
t.drop();
-t.save( { a : 1 } );
-t.save( { a : 1 , b : 2 } );
+t.save({a: 1});
+t.save({a: 1, b: 2});
-assert.eq( 2 , t.find( { a : 1 } ).itcount() , "A" );
-assert.eq( 2 , t.find( { a : 1 } ).count() , "B" );
+assert.eq(2, t.find({a: 1}).itcount(), "A");
+assert.eq(2, t.find({a: 1}).count(), "B");
-assert.eq( 2 , t.find( { a : 1 } , { b : 1 } ).itcount() , "C" );
-assert.eq( 2 , t.find( { a : 1 } , { b : 1 } ).count() , "D" );
+assert.eq(2, t.find({a: 1}, {b: 1}).itcount(), "C");
+assert.eq(2, t.find({a: 1}, {b: 1}).count(), "D");
t.drop();
-t.save( { a : 1 } );
-
-assert.eq( 1 , t.find( { a : 1 } ).itcount() , "E" );
-assert.eq( 1 , t.find( { a : 1 } ).count() , "F" );
-
-assert.eq( 1 , t.find( { a : 1 } , { b : 1 } ).itcount() , "G" );
-assert.eq( 1 , t.find( { a : 1 } , { b : 1 } ).count() , "H" );
-
+t.save({a: 1});
+assert.eq(1, t.find({a: 1}).itcount(), "E");
+assert.eq(1, t.find({a: 1}).count(), "F");
+assert.eq(1, t.find({a: 1}, {b: 1}).itcount(), "G");
+assert.eq(1, t.find({a: 1}, {b: 1}).count(), "H");