diff options
author | jannaerin <golden.janna@gmail.com> | 2023-02-01 20:54:39 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2023-02-08 02:46:14 +0000 |
commit | 567bcd0e4822d726aea15f0338c89c49de2a56b5 (patch) | |
tree | fa2a6ea1d3cbd4872fba26df3fdb44548544206f /src/mongo/db/cst/cst_pipeline_translation_test.cpp | |
parent | f7afadd90f50662b2b3b3a45595b65b37a59bdc3 (diff) | |
download | mongo-567bcd0e4822d726aea15f0338c89c49de2a56b5.tar.gz |
SERVER-73112 Expose function to construct NamespaceString in unit tests
Diffstat (limited to 'src/mongo/db/cst/cst_pipeline_translation_test.cpp')
-rw-r--r-- | src/mongo/db/cst/cst_pipeline_translation_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/cst/cst_pipeline_translation_test.cpp b/src/mongo/db/cst/cst_pipeline_translation_test.cpp index 3d247af1e57..f2d11bbdcb6 100644 --- a/src/mongo/db/cst/cst_pipeline_translation_test.cpp +++ b/src/mongo/db/cst/cst_pipeline_translation_test.cpp @@ -58,7 +58,7 @@ namespace { using namespace std::string_literals; auto getExpCtx() { - auto nss = NamespaceString{"db", "coll"}; + auto nss = NamespaceString::createNamespaceString_forTest("db", "coll"); return boost::intrusive_ptr<ExpressionContextForTest>{new ExpressionContextForTest(nss)}; } |