summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/storage_timestamp_tests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/dbtests/storage_timestamp_tests.cpp')
-rw-r--r--src/mongo/dbtests/storage_timestamp_tests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/dbtests/storage_timestamp_tests.cpp b/src/mongo/dbtests/storage_timestamp_tests.cpp
index 33f4a23b6f8..9622e723b80 100644
--- a/src/mongo/dbtests/storage_timestamp_tests.cpp
+++ b/src/mongo/dbtests/storage_timestamp_tests.cpp
@@ -2695,7 +2695,7 @@ public:
const LogicalTime beforeDropTs = currentTime.clusterTime();
// Drop all of the indexes.
- dropIndexes(_opCtx, nss, "*");
+ dropIndexes(_opCtx, nss, boost::none, "*");
// Assert that each index is dropped individually and with its own timestamp. The order of
// dropping and creating are not guaranteed to be the same, but assert all of the created
@@ -2770,7 +2770,7 @@ public:
const LogicalTime beforeDropTs = currentTime.clusterTime();
// Drop all of the indexes.
- dropIndexes(_opCtx, nss, std::vector<std::string>{"a_1", "b_1", "c_1"});
+ dropIndexes(_opCtx, nss, boost::none, std::vector<std::string>{"a_1", "b_1", "c_1"});
// Assert that each index is dropped individually and with its own timestamp. The order of
// dropping and creating are not guaranteed to be the same, but assert all of the created