Index: runtime/observatory/tests/observatory_ui/nav/notify_exception/connection_exception_test.dart |
diff --git a/runtime/observatory/tests/observatory_ui/nav/notify_exception/connection_exception_test.dart b/runtime/observatory/tests/observatory_ui/nav/notify_exception/connection_exception_test.dart |
index 426828d10b1ee17798935d99acd6f4a7d2691a52..4f19e6425e49b838d119e3b06b5b8f2f219bb6b0 100644 |
--- a/runtime/observatory/tests/observatory_ui/nav/notify_exception/connection_exception_test.dart |
+++ b/runtime/observatory/tests/observatory_ui/nav/notify_exception/connection_exception_test.dart |
@@ -38,15 +38,15 @@ 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 { |
sub = e.onDelete.listen(expectAsync((ExceptionDeleteEvent event) { |
expect(event, isNotNull, reason: 'event is passed'); |
expect(event.exception, equals(exception), |
- reason: 'exception is the same'); |
+ reason: 'exception is the same'); |
expect(event.stacktrace, isNull); |
}, count: 1, reason: 'event is fired')); |
e.querySelector('button').click(); |
@@ -55,7 +55,7 @@ main() { |
sub = e.onDelete.listen(expectAsync((ExceptionDeleteEvent event) { |
expect(event, isNotNull, reason: 'event is passed'); |
expect(event.exception, equals(exception), |
- reason: 'exception is the same'); |
+ reason: 'exception is the same'); |
expect(event.stacktrace, isNull); |
}, count: 1, reason: 'event is fired')); |
e.delete(); |