summaryrefslogtreecommitdiff
path: root/jstests/core/in5.js
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2016-05-28 17:55:12 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2016-05-28 17:55:12 -0400
commit6dcdd23dd37ef12c87e71cf59ef01cd82432efe0 (patch)
treec8cfb5acb62c80f375bc37e7d4350382deea6a37 /jstests/core/in5.js
parentd4ac5673ea3f6cef4ce9dbcec90e31813997a528 (diff)
downloadmongo-6dcdd23dd37ef12c87e71cf59ef01cd82432efe0.tar.gz
SERVER-23971 Clang-Format code
Diffstat (limited to 'jstests/core/in5.js')
-rw-r--r--jstests/core/in5.js18
1 files changed, 4 insertions, 14 deletions
diff --git a/jstests/core/in5.js b/jstests/core/in5.js
index c56621c91f3..772427365b7 100644
--- a/jstests/core/in5.js
+++ b/jstests/core/in5.js
@@ -4,30 +4,20 @@ t = db.in5;
function go(fn) {
t.drop();
o = {};
- o[fn] = {
- a: 1,
- b: 2
- };
+ o[fn] = {a: 1, b: 2};
t.insert(o);
x = {};
- x[fn] = {
- a: 1,
- b: 2
- };
+ x[fn] = {a: 1, b: 2};
assert.eq(1, t.find(x).itcount(), "A1 - " + fn);
y = {};
- y[fn] = {
- $in: [{a: 1, b: 2}]
- };
+ y[fn] = {$in: [{a: 1, b: 2}]};
assert.eq(1, t.find(y).itcount(), "A2 - " + fn);
z = {};
z[fn + ".a"] = 1;
- z[fn + ".b"] = {
- $in: [2]
- };
+ z[fn + ".b"] = {$in: [2]};
assert.eq(1, t.find(z).itcount(), "A3 - " + fn); // SERVER-1366
i = {};