summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/query_request_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/query/query_request_test.cpp')
-rw-r--r--src/mongo/db/query/query_request_test.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mongo/db/query/query_request_test.cpp b/src/mongo/db/query/query_request_test.cpp
index 1ad7544a371..ed4d369602b 100644
--- a/src/mongo/db/query/query_request_test.cpp
+++ b/src/mongo/db/query/query_request_test.cpp
@@ -34,7 +34,6 @@
#include <boost/optional/optional_io.hpp>
#include "mongo/db/catalog/collection_catalog.h"
-#include "mongo/db/catalog/collection_catalog_entry_mock.h"
#include "mongo/db/catalog/collection_mock.h"
#include "mongo/db/dbmessage.h"
#include "mongo/db/json.h"
@@ -1478,9 +1477,8 @@ TEST_F(QueryRequestTest, ParseFromUUID) {
const CollectionUUID uuid = UUID::gen();
const NamespaceString nss("test.testns");
auto coll = std::make_unique<CollectionMock>(nss);
- auto catalogEntry = std::make_unique<CollectionCatalogEntryMock>(nss.ns());
CollectionCatalog& catalog = CollectionCatalog::get(opCtx.get());
- catalog.registerCollection(uuid, std::move(catalogEntry), std::move(coll));
+ catalog.registerCollection(uuid, std::move(coll));
QueryRequest qr(NamespaceStringOrUUID("test", uuid));
// Ensure a call to refreshNSS succeeds.
qr.refreshNSS(opCtx.get());