summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/agg_base.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency/fsm_workloads/agg_base.js')
-rw-r--r--jstests/concurrency/fsm_workloads/agg_base.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/jstests/concurrency/fsm_workloads/agg_base.js b/jstests/concurrency/fsm_workloads/agg_base.js
index 9bc1be04785..410fa2295ef 100644
--- a/jstests/concurrency/fsm_workloads/agg_base.js
+++ b/jstests/concurrency/fsm_workloads/agg_base.js
@@ -68,10 +68,6 @@ var $config = (function() {
assertWhenOwnColl.eq(this.numDocs / 2, db[collName].find({flag: true}).itcount());
}
- function teardown(db, collName, cluster) {
- assertWhenOwnColl(db[collName].drop());
- }
-
return {
// Using few threads and iterations because each iteration is fairly expensive compared to
// other workloads' iterations. (Each does a collection scan over a few thousand documents
@@ -83,6 +79,5 @@ var $config = (function() {
transitions: transitions,
data: data,
setup: setup,
- teardown: teardown
};
})();