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

Unified Diff: tests/lib/async/stream_last_where_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/lib/async/stream_last_where_test.dart
diff --git a/tests/lib/async/stream_last_where_test.dart b/tests/lib/async/stream_last_where_test.dart
index f001502707cd7c254af88027590ce265c0c37652..2a6d3de11f976f1ef8c063d62c7c50d79a3f9850 100644
--- a/tests/lib/async/stream_last_where_test.dart
+++ b/tests/lib/async/stream_last_where_test.dart
@@ -10,8 +10,13 @@ import 'package:unittest/unittest.dart';
import 'event_helper.dart';
import 'stream_state_helper.dart';
-class A { const A(); }
-class B extends A { const B(); }
+class A {
+ const A();
+}
+
+class B extends A {
+ const B();
+}
main() {
Events sentEvents = new Events()..close();
@@ -21,7 +26,9 @@ main() {
test("lastWhere with super class", () {
StreamController c = new StreamController<B>();
Future f = c.stream.lastWhere((x) => false, defaultValue: () => const A());
- f.then(expectAsync((v) { Expect.equals(const A(), v); }));
+ f.then(expectAsync((v) {
+ Expect.equals(const A(), v);
+ }));
sentEvents.replay(c);
});
}

Powered by Google App Engine
This is Rietveld 408576698