summaryrefslogtreecommitdiff
path: root/jstests/core/regex5.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/regex5.js')
-rw-r--r--jstests/core/regex5.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/jstests/core/regex5.js b/jstests/core/regex5.js
index 6d11fce5578..69537e149e5 100644
--- a/jstests/core/regex5.js
+++ b/jstests/core/regex5.js
@@ -15,7 +15,6 @@ a = /.*b.*c/;
x = /.*y.*/;
doit = function() {
-
assert.eq(1, t.find({x: a}).count(), "A");
assert.eq(2, t.find({x: x}).count(), "B");
assert.eq(2, t.find({x: {$in: [x]}}).count(), "C"); // SERVER-322