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

Unified Diff: tests/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/html/streams_test.dart
diff --git a/tests/html/streams_test.dart b/tests/html/streams_test.dart
index edd77e75567dbf40f85b80aa33d00a0ae8fa55f3..31840d04c8348059fa8fa30072a77ae51c1cce3b 100644
--- a/tests/html/streams_test.dart
+++ b/tests/html/streams_test.dart
@@ -1,4 +1,5 @@
library streams_test;
+
import 'package:unittest/unittest.dart';
import 'package:unittest/html_config.dart';
import 'dart:async';
@@ -57,11 +58,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