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

Unified Diff: runtime/observatory/tests/observatory_ui/nav/notify_exception/connection_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/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 4f19e6425e49b838d119e3b06b5b8f2f219bb6b0..426828d10b1ee17798935d99acd6f4a7d2691a52 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();

Powered by Google App Engine
This is Rietveld 408576698