summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/jsontests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/dbtests/jsontests.cpp')
-rw-r--r--src/mongo/dbtests/jsontests.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/mongo/dbtests/jsontests.cpp b/src/mongo/dbtests/jsontests.cpp
index 04a5b375a34..ecd156ed5a6 100644
--- a/src/mongo/dbtests/jsontests.cpp
+++ b/src/mongo/dbtests/jsontests.cpp
@@ -65,7 +65,8 @@ public:
void run() {
ASSERT_EQUALS("{ \"a\" : \"b\" }",
BSON("a"
- << "b").jsonString(Strict));
+ << "b")
+ .jsonString(Strict));
}
};
@@ -2473,7 +2474,8 @@ public:
virtual BSONObj bson() const {
return BSON("int" << 123 << "long" << 9223372036854775807ll // 2**63 - 1
- << "double" << 3.14);
+ << "double"
+ << 3.14);
}
virtual string json() const {
return "{ \"int\": 123, \"long\": 9223372036854775807, \"double\": 3.14 }";
@@ -2496,7 +2498,8 @@ public:
virtual BSONObj bson() const {
return BSON("int" << 123 << "long" << 9223372036854775807ll // 2**63 - 1
- << "double" << 3.14);
+ << "double"
+ << 3.14);
}
virtual string json() const {
return "{ 'int': NumberInt(123), "
@@ -2596,7 +2599,8 @@ public:
virtual BSONObj bson() const {
return BSON("int" << -123 << "long" << -9223372036854775807ll // -1 * (2**63 - 1)
- << "double" << -3.14);
+ << "double"
+ << -3.14);
}
virtual string json() const {
return "{ \"int\": -123, \"long\": -9223372036854775807, \"double\": -3.14 }";