summaryrefslogtreecommitdiff
path: root/jstests/core/regex3.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/regex3.js')
-rw-r--r--jstests/core/regex3.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/jstests/core/regex3.js b/jstests/core/regex3.js
index bc1623cecea..23b7f3c69cc 100644
--- a/jstests/core/regex3.js
+++ b/jstests/core/regex3.js
@@ -8,9 +8,8 @@ t.save({name: "bob"});
t.save({name: "aaron"});
assert.eq(2, t.find({name: /^e.*/}).itcount(), "no index count");
-assert.eq(4,
- t.find({name: /^e.*/}).explain(true).executionStats.totalDocsExamined,
- "no index explain");
+assert.eq(
+ 4, t.find({name: /^e.*/}).explain(true).executionStats.totalDocsExamined, "no index explain");
t.ensureIndex({name: 1});
assert.eq(2, t.find({name: /^e.*/}).itcount(), "index count");
assert.eq(2,