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

Unified Diff: tests/language_strong/list_literal2_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/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);

Powered by Google App Engine
This is Rietveld 408576698