Index: tests/language_strong/list_literal2_test.dart |
diff --git a/tests/language_strong/list_literal2_test.dart b/tests/language_strong/list_literal2_test.dart |
index 49dc1afd88eb0ae3340684ec98c1f01bcdc82aac..a21113ea584a8726a0e46f6c48a24821d8c37660 100644 |
--- a/tests/language_strong/list_literal2_test.dart |
+++ b/tests/language_strong/list_literal2_test.dart |
@@ -9,8 +9,8 @@ class ArrayLiteral2Test { |
static const int LAUREL = 1965; |
static const int HARDY = 1957; |
- static const LUCKY_DOG = const <int>[ 1919, 1921 ]; |
- static const MUSIC_BOX = const [ LAUREL, HARDY ]; |
+ static const LUCKY_DOG = const <int>[1919, 1921]; |
+ static const MUSIC_BOX = const [LAUREL, HARDY]; |
static testMain() { |
Expect.equals(2, LUCKY_DOG.length); |