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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/options_parser/options_parser_test.cpp b/src/mongo/util/options_parser/options_parser_test.cpp
index dba5910d395..a0d97c512bb 100644
--- a/src/mongo/util/options_parser/options_parser_test.cpp
+++ b/src/mongo/util/options_parser/options_parser_test.cpp
@@ -684,7 +684,7 @@ TEST(Parsing, DefaultValuesNotInBSON) {
ASSERT_OK(parser.run(testOpts, argv, env_map, &environment));
mongo::BSONObj expected = BSON("val1" << 6);
- ASSERT_EQUALS(expected, environment.toBSON());
+ ASSERT_BSONOBJ_EQ(expected, environment.toBSON());
}
TEST(Parsing, ImplicitValue) {