summaryrefslogtreecommitdiff
path: root/src/mongo/util/options_parser/options_parser_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/options_parser/options_parser_test.cpp')
-rw-r--r--src/mongo/util/options_parser/options_parser_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/util/options_parser/options_parser_test.cpp b/src/mongo/util/options_parser/options_parser_test.cpp
index a0d97c512bb..bf8fb873be5 100644
--- a/src/mongo/util/options_parser/options_parser_test.cpp
+++ b/src/mongo/util/options_parser/options_parser_test.cpp
@@ -302,7 +302,7 @@ TEST(Parsing, SubSection) {
moe::OptionSection subSection("Section Name");
subSection.addOptionChaining("port", "port", moe::Int, "Port");
- testOpts.addSection(subSection);
+ testOpts.addSection(subSection).transitional_ignore();
std::vector<std::string> argv;
argv.push_back("binaryname");
@@ -4020,7 +4020,7 @@ TEST(OptionCount, Basic) {
moe::OptionSection subSection("Section Name");
subSection.addOptionChaining("port", "port", moe::Int, "Port")
.setSources(moe::SourceYAMLConfig);
- testOpts.addSection(subSection);
+ testOpts.addSection(subSection).transitional_ignore();
int numOptions;
ASSERT_OK(testOpts.countOptions(&numOptions, true /*visibleOnly*/, moe::SourceCommandLine));