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

Unified Diff: runtime/observatory/tests/observatory_ui/mocks/objects/guarded.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/mocks/objects/guarded.dart
diff --git a/runtime/observatory/tests/observatory_ui/mocks/objects/guarded.dart b/runtime/observatory/tests/observatory_ui/mocks/objects/guarded.dart
index 8d0c8cca3eaaa96576cd405f0fb20cea3568bf76..95de8627b9fb8068587d36b4c42995880434e873 100644
--- a/runtime/observatory/tests/observatory_ui/mocks/objects/guarded.dart
+++ b/runtime/observatory/tests/observatory_ui/mocks/objects/guarded.dart
@@ -10,7 +10,9 @@ class GuardedMock<T> implements M.Guarded {
final T asValue;
final M.Sentinel asSentinel;
- const GuardedMock.fromValue(this.asValue) : asSentinel = null;
+ const GuardedMock.fromValue(this.asValue)
+ : asSentinel = null;
- const GuardedMock.fromSentinel(this.asSentinel) : asValue = null;
+ const GuardedMock.fromSentinel(this.asSentinel)
+ : asValue = null;
}

Powered by Google App Engine
This is Rietveld 408576698