summaryrefslogtreecommitdiff
path: root/jstests/core/indexOtherNamespace.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/indexOtherNamespace.js')
-rw-r--r--jstests/core/indexOtherNamespace.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/indexOtherNamespace.js b/jstests/core/indexOtherNamespace.js
index 9876fb841f9..a94cff5d51b 100644
--- a/jstests/core/indexOtherNamespace.js
+++ b/jstests/core/indexOtherNamespace.js
@@ -6,7 +6,7 @@ load("jstests/libs/analyze_plan.js");
var otherDB = db.getSiblingDB("indexOtherNS");
otherDB.dropDatabase();
-otherDB.foo.insert({a:1})
+otherDB.foo.insert({a:1});
assert.eq(1, otherDB.foo.getIndexes().length);
assert(isCollscan(otherDB.foo.find({a:1}).explain().queryPlanner.winningPlan));