summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv/kv_collection_catalog_entry_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/kv/kv_collection_catalog_entry_test.cpp')
-rw-r--r--src/mongo/db/storage/kv/kv_collection_catalog_entry_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/storage/kv/kv_collection_catalog_entry_test.cpp b/src/mongo/db/storage/kv/kv_collection_catalog_entry_test.cpp
index 315576dd011..c4eee897176 100644
--- a/src/mongo/db/storage/kv/kv_collection_catalog_entry_test.cpp
+++ b/src/mongo/db/storage/kv/kv_collection_catalog_entry_test.cpp
@@ -33,8 +33,8 @@
#include <iostream>
#include <string>
+#include "mongo/db/catalog/collection_catalog.h"
#include "mongo/db/catalog/collection_catalog_entry.h"
-#include "mongo/db/catalog/uuid_catalog.h"
#include "mongo/db/index/index_descriptor.h"
#include "mongo/db/index/multikey_paths.h"
#include "mongo/db/index_names.h"
@@ -90,7 +90,7 @@ public:
}
CollectionCatalogEntry* getCollectionCatalogEntry() {
- return UUIDCatalog::get(getGlobalServiceContext())
+ return CollectionCatalog::get(getGlobalServiceContext())
.lookupCollectionCatalogEntryByNamespace(_nss);
}