diff options
-rw-r--r-- | chrome/test/data/serializer_nested_test.js | 34 | ||||
-rw-r--r-- | chrome/test/data/serializer_test.js | 16 |
2 files changed, 25 insertions, 25 deletions
diff --git a/chrome/test/data/serializer_nested_test.js b/chrome/test/data/serializer_nested_test.js index cfea8e8..9b47c3d 100644 --- a/chrome/test/data/serializer_nested_test.js +++ b/chrome/test/data/serializer_nested_test.js @@ -1,17 +1,17 @@ -{ - "bool": true, - "dict": { - "bool": true, - "dict": { - "bees": "knees", - "cats": "meow" - }, - "foos": "bar", - "list": [ 3.4, "second", null ] - }, - "int": 42, - "list": [ 1, 2 ], - "null": null, - "real": 3.14, - "string": "hello" -} +{
+ "bool": true,
+ "dict": {
+ "bool": true,
+ "dict": {
+ "bees": "knees",
+ "cats": "meow"
+ },
+ "foos": "bar",
+ "list": [ 3.4, "second", null ]
+ },
+ "int": 42,
+ "list": [ 1, 2 ],
+ "null": null,
+ "real": 3.14,
+ "string": "hello"
+}
diff --git a/chrome/test/data/serializer_test.js b/chrome/test/data/serializer_test.js index 446925e..e2472d6 100644 --- a/chrome/test/data/serializer_test.js +++ b/chrome/test/data/serializer_test.js @@ -1,8 +1,8 @@ -{ - "bool": true, - "int": 42, - "list": [ 1, 2 ], - "null": null, - "real": 3.14, - "string": "hello" -} +{
+ "bool": true,
+ "int": 42,
+ "list": [ 1, 2 ],
+ "null": null,
+ "real": 3.14,
+ "string": "hello"
+}
|