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

Unified Diff: tests/language_strong/const_objects_are_immutable_test.dart

Issue 2774783002: Re-land "Format all multitests" (Closed)
Patch Set: Created 3 years, 9 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 | « tests/language_strong/const_native_factory_test.dart ('k') | tests/language_strong/const_switch2_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/const_objects_are_immutable_test.dart
diff --git a/tests/language_strong/const_objects_are_immutable_test.dart b/tests/language_strong/const_objects_are_immutable_test.dart
index 8028818d2af3d00f7dbab202717e065d14a68ba3..3daa082084a72789b0259eb8a27bdda56af01cea 100644
--- a/tests/language_strong/const_objects_are_immutable_test.dart
+++ b/tests/language_strong/const_objects_are_immutable_test.dart
@@ -15,7 +15,7 @@ main() {
Expect.throws(() => list[0] = 3);
Expect.equals(1, list[0]);
- var m = const { 'foo': 499 };
+ var m = const {'foo': 499};
Expect.throws(() => m['foo'] = 42);
Expect.equals(499, m['foo']);
« no previous file with comments | « tests/language_strong/const_native_factory_test.dart ('k') | tests/language_strong/const_switch2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698