summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/mobile/mobile_index_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/mobile/mobile_index_test.cpp')
-rw-r--r--src/mongo/db/storage/mobile/mobile_index_test.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/db/storage/mobile/mobile_index_test.cpp b/src/mongo/db/storage/mobile/mobile_index_test.cpp
index 31419df65fb..4a2502509e2 100644
--- a/src/mongo/db/storage/mobile/mobile_index_test.cpp
+++ b/src/mongo/db/storage/mobile/mobile_index_test.cpp
@@ -60,9 +60,10 @@ public:
fassert(37052, status);
if (isUnique) {
- return stdx::make_unique<MobileIndexUnique>(_ordering, ident);
+ return stdx::make_unique<MobileIndexUnique>(
+ _ordering, ident, "test.mobile", "indexName");
}
- return stdx::make_unique<MobileIndexStandard>(_ordering, ident);
+ return stdx::make_unique<MobileIndexStandard>(_ordering, ident, "test.mobile", "indexName");
}
std::unique_ptr<RecoveryUnit> newRecoveryUnit() {