summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/resharding_destined_recipient_test.cpp
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2020-10-14 11:50:08 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-10-22 08:39:16 +0000
commit41f2ecbb47072b7b6990f39e4ad7fe27b289e835 (patch)
tree163b2c0aac0f45cfa5a9fd7b0c82046cfc3e3b72 /src/mongo/db/s/resharding_destined_recipient_test.cpp
parent184e8acc583a9ee8fd9b928138c3b79bb9416cc2 (diff)
downloadmongo-41f2ecbb47072b7b6990f39e4ad7fe27b289e835.tar.gz
SERVER-50027 Make CollectionType use IDL (Part 1)
This change just starts the basis so that the CollectionType can be built on IDL in order to avoid conflicts with any changes to the format. The remaining fields will be moved to IDL in a subsequent commit and the custom parsing will be removed.
Diffstat (limited to 'src/mongo/db/s/resharding_destined_recipient_test.cpp')
-rw-r--r--src/mongo/db/s/resharding_destined_recipient_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/s/resharding_destined_recipient_test.cpp b/src/mongo/db/s/resharding_destined_recipient_test.cpp
index 596beeaf471..d6043045f9d 100644
--- a/src/mongo/db/s/resharding_destined_recipient_test.cpp
+++ b/src/mongo/db/s/resharding_destined_recipient_test.cpp
@@ -159,7 +159,7 @@ protected:
CollectionType createCollection(const OID& epoch) {
CollectionType coll;
- coll.setNs(kNss);
+ coll.setNss(kNss);
coll.setEpoch(epoch);
coll.setKeyPattern(BSON(kShardKey << 1));
coll.setUnique(false);