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

Unified Diff: tests/corelib/list_to_string_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/corelib/list_to_string_test.dart
diff --git a/tests/corelib/list_to_string_test.dart b/tests/corelib/list_to_string_test.dart
index a127c268632fff7c6fb9d5029661e8c4b185e711..fed5277fe18e1fab33b265ee9653980b747feec7 100644
--- a/tests/corelib/list_to_string_test.dart
+++ b/tests/corelib/list_to_string_test.dart
@@ -10,7 +10,9 @@ class MyList extends ListBase {
MyList(this.list);
get length => list.length;
- set length(val) { list.length = val; }
+ set length(val) {
+ list.length = val;
+ }
operator [](index) => list[index];
operator []=(index, val) => list[index] = val;

Powered by Google App Engine
This is Rietveld 408576698