summaryrefslogtreecommitdiff
path: root/jstests/noPassthroughWithMongod
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthroughWithMongod')
-rw-r--r--jstests/noPassthroughWithMongod/create_existing_indexes_no_conflict.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/jstests/noPassthroughWithMongod/create_existing_indexes_no_conflict.js b/jstests/noPassthroughWithMongod/create_existing_indexes_no_conflict.js
index 7859ddf8f51..3305382feca 100644
--- a/jstests/noPassthroughWithMongod/create_existing_indexes_no_conflict.js
+++ b/jstests/noPassthroughWithMongod/create_existing_indexes_no_conflict.js
@@ -12,7 +12,6 @@ const dbName = "test";
const collName = "ensure_index_no_conflicts";
const testDB = db.getSiblingDB(dbName);
testDB.dropDatabase();
-assert.commandWorked(testDB.adminCommand({clearLog: 'global'}));
assert.commandWorked(testDB.createCollection(collName));
const testColl = testDB.getCollection(collName);
assert.commandWorked(testColl.createIndex({a: 1}));