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

Unified Diff: runtime/observatory/tests/observatory_ui/vm_connect_target/element_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/vm_connect_target/element_test.dart
diff --git a/runtime/observatory/tests/observatory_ui/vm_connect_target/element_test.dart b/runtime/observatory/tests/observatory_ui/vm_connect_target/element_test.dart
index 082e5889a1280268c2cc1f9cf8c986b7512a5cef..b4011f9489bf94122e88e0ae5cda22decafce84e 100644
--- a/runtime/observatory/tests/observatory_ui/vm_connect_target/element_test.dart
+++ b/runtime/observatory/tests/observatory_ui/vm_connect_target/element_test.dart
@@ -22,13 +22,13 @@ main() {
expect(e.current, isFalse, reason: 'default to not current');
});
test('isCurrent: false', () {
- final e = new VMConnectTargetElement(t, current: false);
+ final e = new VMConnectTargetElement(t, current:false);
expect(e, isNotNull, reason: 'element correctly created');
expect(e.target, t, reason: 'target not setted');
expect(e.current, isFalse, reason: 'default to not current');
});
test('isCurrent: true', () {
- final e = new VMConnectTargetElement(t, current: true);
+ final e = new VMConnectTargetElement(t, current:true);
expect(e, isNotNull, reason: 'element correctly created');
expect(e.target, t, reason: 'target not setted');
expect(e.current, isTrue, reason: 'default to not current');

Powered by Google App Engine
This is Rietveld 408576698