Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Unified Diff: client/tests/client/json/json_tests.dart

Issue 10124010: Migrate to interpolation instead of concatenation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/json/json.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/client/json/json_tests.dart
diff --git a/client/tests/client/json/json_tests.dart b/client/tests/client/json/json_tests.dart
index 41eca73448a02d687383d4e06a71e1d726e11f60..71828f438880a33eb87f87dbfd97971707930469 100644
--- a/client/tests/client/json/json_tests.dart
+++ b/client/tests/client/json/json_tests.dart
@@ -61,12 +61,12 @@ main() {
expectValueEquals(
{'x':3, 'y':-4.5, 'z':'hi', 'w':null, 'u':true, 'v':false},
JSON.parse(' {"x":3, "y": -4.5, "z" : "hi",'
- + '"w":null, "u" : true, "v": false } '));
+ '"w":null, "u" : true, "v": false } '));
expectValueEquals(
{'x':{'a':3, 'b':-4.5}, 'y':[{}], 'z':'hi', 'w':{'c':null, 'd':true},
'v':null},
JSON.parse('{"x": {"a":3, "b": -4.5}, "y":[{}], '
- + '"z":"hi","w":{"c":null,"d":true}, "v":null}'));
+ '"z":"hi","w":{"c":null,"d":true}, "v":null}'));
});
test('stringify', () {
« no previous file with comments | « no previous file | lib/json/json.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698