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

Unified Diff: tests/language_strong/asyncstar_concat_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/asyncstar_concat_test.dart
diff --git a/tests/language_strong/asyncstar_concat_test.dart b/tests/language_strong/asyncstar_concat_test.dart
index aeb1361cd85fdcc35bf1fd466b161c2462befc4e..222e3cf6d6b4d038d364066e2df7364eccf08387 100644
--- a/tests/language_strong/asyncstar_concat_test.dart
+++ b/tests/language_strong/asyncstar_concat_test.dart
@@ -17,8 +17,8 @@ concat(a, b) async* {
}
test() async {
- Expect.listEquals([1, 2, 3, 11, 12, 13],
- await concat(range(1, 4), range(11, 14)).toList());
+ Expect.listEquals(
+ [1, 2, 3, 11, 12, 13], await concat(range(1, 4), range(11, 14)).toList());
}
main() {
@@ -26,4 +26,4 @@ main() {
test().then((_) {
asyncEnd();
});
-}
+}

Powered by Google App Engine
This is Rietveld 408576698