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)); |