| 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');
|
|
|