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

Unified Diff: runtime/observatory/tests/observatory_ui/nav/notify_exception/exception_test.dart

Issue 2767533002: Revert "Fix observatory tests broken by running dartfmt." (Closed)
Patch Set: Created 3 years, 9 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: 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();
});

Powered by Google App Engine
This is Rietveld 408576698