summaryrefslogtreecommitdiff
path: root/jstests/core/profile_count.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/profile_count.js')
-rw-r--r--jstests/core/profile_count.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/jstests/core/profile_count.js b/jstests/core/profile_count.js
index 09ba6520828..d79fb94df85 100644
--- a/jstests/core/profile_count.js
+++ b/jstests/core/profile_count.js
@@ -44,9 +44,7 @@
assert.writeOK(coll.insert({a: i}));
}
- var query = {
- a: {$gte: 5}
- };
+ var query = {a: {$gte: 5}};
assert.eq(5, coll.count(query));
profileObj = getLatestProfilerEntry(testDB);
@@ -62,9 +60,7 @@
}
assert.commandWorked(coll.createIndex({a: 1}));
- query = {
- a: {$gte: 5}
- };
+ query = {a: {$gte: 5}};
assert.eq(5, coll.count(query));
profileObj = getLatestProfilerEntry(testDB);