diff options
author | Jonathan Abrahams <jonathan@mongodb.com> | 2016-03-09 12:17:50 -0500 |
---|---|---|
committer | Jonathan Abrahams <jonathan@mongodb.com> | 2016-03-09 12:18:14 -0500 |
commit | 4ae691e8edc87d0e3cfb633bb91c328426be007b (patch) | |
tree | 52079a593f54382ca13a2e741633eab1b6271893 /jstests/core/in6.js | |
parent | a025d43f3ce2efc1fb1282a718f5d286fa0a4dc1 (diff) | |
download | mongo-4ae691e8edc87d0e3cfb633bb91c328426be007b.tar.gz |
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/core/in6.js')
-rw-r--r-- | jstests/core/in6.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/jstests/core/in6.js b/jstests/core/in6.js index f114d93442a..4ee06541b81 100644 --- a/jstests/core/in6.js +++ b/jstests/core/in6.js @@ -1,13 +1,13 @@ t = db.jstests_in6; t.drop(); -t.save( {} ); +t.save({}); function doTest() { - assert.eq.automsg( "1", "t.count( {i:null} )" ); - assert.eq.automsg( "1", "t.count( {i:{$in:[null]}} )" ); + assert.eq.automsg("1", "t.count( {i:null} )"); + assert.eq.automsg("1", "t.count( {i:{$in:[null]}} )"); } doTest(); -t.ensureIndex( {i:1} ); +t.ensureIndex({i: 1}); doTest(); |