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

Unified Diff: tests/language/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/compile_time_constant8_test.dart
diff --git a/tests/language/compile_time_constant8_test.dart b/tests/language/compile_time_constant8_test.dart
index a291f821bf9182a3edc356543320ecc2df063984..9e1172e79d9c249d9ded6834e4b21859ca727181 100644
--- a/tests/language/compile_time_constant8_test.dart
+++ b/tests/language/compile_time_constant8_test.dart
@@ -12,7 +12,7 @@ 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];
const list2 = const [1, 2];
main() {
Expect.isFalse(identical(a, b));

Powered by Google App Engine
This is Rietveld 408576698