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

Unified Diff: tests/language_strong/compile_time_constant8_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 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
Index: tests/language_strong/compile_time_constant8_test.dart
diff --git a/tests/language_strong/compile_time_constant8_test.dart b/tests/language_strong/compile_time_constant8_test.dart
index a3717b9ed41a17ffc43f91ecc75c4833ec49e7c6..b4a9100e9c29966f1cb2e7817e00dafacf6b0663 100644
--- a/tests/language_strong/compile_time_constant8_test.dart
+++ b/tests/language_strong/compile_time_constant8_test.dart
@@ -12,9 +12,9 @@ class A<T> {
const a = const A<int>();
const b = const A<double>();
-const list1 = const<int> [1, 2];
+const list1 = const <int>[1, 2];
// Strong mode change: explicit <dynamic>
-const list2 = const<dynamic> [1, 2];
+const list2 = const <dynamic>[1, 2];
main() {
Expect.isFalse(identical(a, b));
Expect.isFalse(identical(list1, list2));

Powered by Google App Engine
This is Rietveld 408576698