summaryrefslogtreecommitdiff
path: root/jstests/core/count11.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/count11.js')
-rw-r--r--jstests/core/count11.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/jstests/core/count11.js b/jstests/core/count11.js
index 4ce218bfc43..aeda1e4b1cf 100644
--- a/jstests/core/count11.js
+++ b/jstests/core/count11.js
@@ -5,12 +5,8 @@ var t = db.count11;
t.drop();
-var validQuery = {
- a: 1
-};
-var invalidQuery = {
- a: {$invalid: 1}
-};
+var validQuery = {a: 1};
+var invalidQuery = {a: {$invalid: 1}};
// Query non-existing collection with empty query.
assert.eq(0, t.find().count());