summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/dbhelper_tests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/dbtests/dbhelper_tests.cpp')
-rw-r--r--src/mongo/dbtests/dbhelper_tests.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mongo/dbtests/dbhelper_tests.cpp b/src/mongo/dbtests/dbhelper_tests.cpp
index 1ed948092c7..7a4d745e764 100644
--- a/src/mongo/dbtests/dbhelper_tests.cpp
+++ b/src/mongo/dbtests/dbhelper_tests.cpp
@@ -74,8 +74,12 @@ public:
KeyRange range(ns, BSON("_id" << _min), BSON("_id" << _max), BSON("_id" << 1));
mongo::WriteConcernOptions dummyWriteConcern;
- Helpers::removeRange(
- &txn, range, BoundInclusion::kIncludeStartKeyOnly, dummyWriteConcern);
+ Milliseconds dummyReplWaitDuration;
+ Helpers::removeRange(&txn,
+ range,
+ BoundInclusion::kIncludeStartKeyOnly,
+ dummyWriteConcern,
+ dummyReplWaitDuration);
}
// Check that the expected documents remain.