summaryrefslogtreecommitdiff
path: root/jstests/core/all3.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/all3.js')
-rw-r--r--jstests/core/all3.js30
1 files changed, 15 insertions, 15 deletions
diff --git a/jstests/core/all3.js b/jstests/core/all3.js
index b7a05321bbf..ae1a9460089 100644
--- a/jstests/core/all3.js
+++ b/jstests/core/all3.js
@@ -5,24 +5,24 @@ t.drop();
t.save({});
-assert.eq( 1, t.count( {foo:{$in:[null]}} ) );
-assert.eq( 1, t.count( {foo:{$all:[null]}} ) );
-assert.eq( 0, t.count( {foo:{$not:{$all:[null]}}} ) );
-assert.eq( 0, t.count( {foo:{$not:{$in:[null]}}} ) );
+assert.eq(1, t.count({foo: {$in: [null]}}));
+assert.eq(1, t.count({foo: {$all: [null]}}));
+assert.eq(0, t.count({foo: {$not: {$all: [null]}}}));
+assert.eq(0, t.count({foo: {$not: {$in: [null]}}}));
t.remove({});
-t.save({foo:1});
-assert.eq( 0, t.count( {foo:{$in:[null]}} ) );
-assert.eq( 0, t.count( {foo:{$all:[null]}} ) );
-assert.eq( 1, t.count( {foo:{$not:{$in:[null]}}} ) );
-assert.eq( 1, t.count( {foo:{$not:{$all:[null]}}} ) );
+t.save({foo: 1});
+assert.eq(0, t.count({foo: {$in: [null]}}));
+assert.eq(0, t.count({foo: {$all: [null]}}));
+assert.eq(1, t.count({foo: {$not: {$in: [null]}}}));
+assert.eq(1, t.count({foo: {$not: {$all: [null]}}}));
t.remove({});
-t.save( {foo:[0,1]} );
-assert.eq( 1, t.count( {foo:{$in:[[0,1]]}} ) );
-assert.eq( 1, t.count( {foo:{$all:[[0,1]]}} ) );
+t.save({foo: [0, 1]});
+assert.eq(1, t.count({foo: {$in: [[0, 1]]}}));
+assert.eq(1, t.count({foo: {$all: [[0, 1]]}}));
t.remove({});
-t.save( {foo:[]} );
-assert.eq( 1, t.count( {foo:{$in:[[]]}} ) );
-assert.eq( 1, t.count( {foo:{$all:[[]]}} ) );
+t.save({foo: []});
+assert.eq(1, t.count({foo: {$in: [[]]}}));
+assert.eq(1, t.count({foo: {$all: [[]]}}));