Index: runtime/observatory/tests/observatory_ui/nav/notify_exception/exception_test.dart |
diff --git a/runtime/observatory/tests/observatory_ui/nav/notify_exception/exception_test.dart b/runtime/observatory/tests/observatory_ui/nav/notify_exception/exception_test.dart |
index 8d4b94eff5f887e6ddf797743a50049cd5c989d5..e809b8246a78588085eba70faad1f408c332adbc 100644 |
--- a/runtime/observatory/tests/observatory_ui/nav/notify_exception/exception_test.dart |
+++ b/runtime/observatory/tests/observatory_ui/nav/notify_exception/exception_test.dart |
@@ -64,8 +64,8 @@ main() { |
e.remove(); |
}); |
test('navigation after connect', () async { |
- sub = window.onPopState |
- .listen(expectAsync((_) {}, count: 1, reason: 'event is fired')); |
+ sub = window.onPopState.listen(expectAsync((_) {}, count: 1, |
+ reason: 'event is fired')); |
e.querySelector('a').click(); |
}); |
test('onDelete events (DOM)', () async { |
@@ -73,7 +73,7 @@ main() { |
expect(event, isNotNull, reason: 'event is passed'); |
expect(event.exception, equals(ex), reason: 'exception is the same'); |
expect(event.stacktrace, equals(st), |
- reason: 'stacktrace is the same'); |
+ reason: 'stacktrace is the same'); |
}, count: 1, reason: 'event is fired')); |
e.querySelector('button').click(); |
}); |
@@ -82,7 +82,7 @@ main() { |
expect(event, isNotNull, reason: 'event is passed'); |
expect(event.exception, equals(ex), reason: 'exception is the same'); |
expect(event.stacktrace, equals(st), |
- reason: 'stacktrace is the same'); |
+ reason: 'stacktrace is the same'); |
}, count: 1, reason: 'event is fired')); |
e.delete(); |
}); |