summaryrefslogtreecommitdiff
path: root/src/mongo/db/catalog/collection_options_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/catalog/collection_options_test.cpp')
-rw-r--r--src/mongo/db/catalog/collection_options_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/catalog/collection_options_test.cpp b/src/mongo/db/catalog/collection_options_test.cpp
index 4e773f1b027..25a03c16270 100644
--- a/src/mongo/db/catalog/collection_options_test.cpp
+++ b/src/mongo/db/catalog/collection_options_test.cpp
@@ -131,9 +131,9 @@ TEST(CollectionOptions, InvalidStorageEngineField) {
TEST(CollectionOptions, ParseEngineField) {
CollectionOptions opts;
- ASSERT_OK(opts.parse(fromjson(
- "{unknownField: 1, "
- "storageEngine: {storageEngine1: {x: 1, y: 2}, storageEngine2: {a: 1, b:2}}}")));
+ ASSERT_OK(opts.parse(
+ fromjson("{unknownField: 1, "
+ "storageEngine: {storageEngine1: {x: 1, y: 2}, storageEngine2: {a: 1, b:2}}}")));
checkRoundTrip(opts);
// Unrecognized field should not be present in BSON representation.