summaryrefslogtreecommitdiff
path: root/jstests/core/type2.js
diff options
context:
space:
mode:
authorJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:17:50 -0500
committerJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:18:14 -0500
commit4ae691e8edc87d0e3cfb633bb91c328426be007b (patch)
tree52079a593f54382ca13a2e741633eab1b6271893 /jstests/core/type2.js
parenta025d43f3ce2efc1fb1282a718f5d286fa0a4dc1 (diff)
downloadmongo-4ae691e8edc87d0e3cfb633bb91c328426be007b.tar.gz
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/core/type2.js')
-rw-r--r--jstests/core/type2.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/jstests/core/type2.js b/jstests/core/type2.js
index 820607e0b30..9c6baa37b94 100644
--- a/jstests/core/type2.js
+++ b/jstests/core/type2.js
@@ -3,17 +3,17 @@
t = db.jstests_type2;
t.drop();
-t.save( {a:null} );
-t.save( {} );
-t.save( {a:'a'} );
+t.save({a: null});
+t.save({});
+t.save({a: 'a'});
function test() {
- assert.eq( 2, t.count( {a:null} ) );
- assert.eq( 1, t.count( {a:{$type:10}} ) );
- assert.eq( 2, t.count( {a:{$exists:true}} ) );
- assert.eq( 1, t.count( {a:{$exists:false}} ) );
+ assert.eq(2, t.count({a: null}));
+ assert.eq(1, t.count({a: {$type: 10}}));
+ assert.eq(2, t.count({a: {$exists: true}}));
+ assert.eq(1, t.count({a: {$exists: false}}));
}
test();
-t.ensureIndex( {a:1} );
+t.ensureIndex({a: 1});
test(); \ No newline at end of file