| 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);
|
|
|