summaryrefslogtreecommitdiff
path: root/src/mongo/bson/util/bson_check_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/bson/util/bson_check_test.cpp')
-rw-r--r--src/mongo/bson/util/bson_check_test.cpp13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/mongo/bson/util/bson_check_test.cpp b/src/mongo/bson/util/bson_check_test.cpp
index f14da7fa459..18365f9ee62 100644
--- a/src/mongo/bson/util/bson_check_test.cpp
+++ b/src/mongo/bson/util/bson_check_test.cpp
@@ -49,19 +49,26 @@ TEST(BsonCheck, CheckHasOnlyLegalFields) {
ASSERT_OK(bsonCheckOnlyHasFields("",
BSON("aField"
<< "value"
- << "thirdField" << 1 << "anotherField" << 2),
+ << "thirdField"
+ << 1
+ << "anotherField"
+ << 2),
legals));
ASSERT_OK(bsonCheckOnlyHasFields("",
BSON("aField"
<< "value"
- << "thirdField" << 1),
+ << "thirdField"
+ << 1),
legals));
ASSERT_EQUALS(ErrorCodes::BadValue,
bsonCheckOnlyHasFields("",
BSON("aField"
<< "value"
- << "illegal" << 4 << "thirdField" << 1),
+ << "illegal"
+ << 4
+ << "thirdField"
+ << 1),
legals));
}