summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/collection_query_info_test.cpp
diff options
context:
space:
mode:
authorjannaerin <golden.janna@gmail.com>2023-02-01 20:54:39 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-02-08 02:46:14 +0000
commit567bcd0e4822d726aea15f0338c89c49de2a56b5 (patch)
treefa2a6ea1d3cbd4872fba26df3fdb44548544206f /src/mongo/db/query/collection_query_info_test.cpp
parentf7afadd90f50662b2b3b3a45595b65b37a59bdc3 (diff)
downloadmongo-567bcd0e4822d726aea15f0338c89c49de2a56b5.tar.gz
SERVER-73112 Expose function to construct NamespaceString in unit tests
Diffstat (limited to 'src/mongo/db/query/collection_query_info_test.cpp')
-rw-r--r--src/mongo/db/query/collection_query_info_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/query/collection_query_info_test.cpp b/src/mongo/db/query/collection_query_info_test.cpp
index 142cbf9d48f..0bf1bef1093 100644
--- a/src/mongo/db/query/collection_query_info_test.cpp
+++ b/src/mongo/db/query/collection_query_info_test.cpp
@@ -183,7 +183,7 @@ std::unique_ptr<IndexDescriptor> makeIndexDescriptor(StringData indexName,
TEST(CollectionQueryInfoTest, computeUpdateIndexDataForCompoundWildcardIndex) {
RAIIServerParameterControllerForTest controller("featureFlagCompoundWildcardIndexes", true);
- NamespaceString nss{"test"_sd};
+ NamespaceString nss = NamespaceString::createNamespaceString_forTest("test"_sd);
CollectionOptions collOptions{};
DevNullKVEngine engine{};
auto sortedDataInterface =
@@ -213,7 +213,7 @@ TEST(CollectionQueryInfoTest, computeUpdateIndexDataForCompoundWildcardIndex) {
TEST(CollectionQueryInfoTest, computeUpdateIndexDataForCompoundWildcardIndex_ExcludeCase) {
RAIIServerParameterControllerForTest controller("featureFlagCompoundWildcardIndexes", true);
- NamespaceString nss{"test"_sd};
+ NamespaceString nss = NamespaceString::createNamespaceString_forTest("test"_sd);
CollectionOptions collOptions{};
DevNullKVEngine engine{};
auto sortedDataInterface =