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

Unified Diff: tests/lib_strong/html/streams_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_strong/html/streams_test.dart
diff --git a/tests/lib_strong/html/streams_test.dart b/tests/lib_strong/html/streams_test.dart
index 2a43f4ce3f60c3d75a5d4f413f5032b172e55fa9..63c4bd7e67d5719a7d88588d3c1078a86e76b415 100644
--- a/tests/lib_strong/html/streams_test.dart
+++ b/tests/lib_strong/html/streams_test.dart
@@ -54,11 +54,12 @@ main() {
expect(childCallCount, 0);
});
- Element.focusEvent.forTarget(helper.element, useCapture: true).listen(
- (Event e) {
- ++childCallCount;
- expect(parentCallCount, 1);
- });
+ Element.focusEvent
+ .forTarget(helper.element, useCapture: true)
+ .listen((Event e) {
+ ++childCallCount;
+ expect(parentCallCount, 1);
+ });
helper.pulse();
expect(childCallCount, 1);

Powered by Google App Engine
This is Rietveld 408576698