| Index: runtime/observatory/tests/observatory_ui/mocks/objects/vm.dart
|
| diff --git a/runtime/observatory/tests/observatory_ui/mocks/objects/vm.dart b/runtime/observatory/tests/observatory_ui/mocks/objects/vm.dart
|
| index 2cfc9f07856c1aa6e984299dd4dba75ee0cc36fa..0d604730a54c8e7dd21fcb6c7b09ffee74a1c3db 100644
|
| --- a/runtime/observatory/tests/observatory_ui/mocks/objects/vm.dart
|
| +++ b/runtime/observatory/tests/observatory_ui/mocks/objects/vm.dart
|
| @@ -22,7 +22,15 @@ class VMMock implements M.VM {
|
| final DateTime startTime;
|
| final Iterable<M.IsolateRef> isolates;
|
|
|
| - const VMMock({this.name: 'vm-name', this.displayName: 'vm-display-name',
|
| - this.architectureBits, this.targetCPU, this.hostCPU, this.version,
|
| - this.pid: 0, this.maxRSS: 0, this.startTime, this.isolates : const []});
|
| + const VMMock(
|
| + {this.name: 'vm-name',
|
| + this.displayName: 'vm-display-name',
|
| + this.architectureBits,
|
| + this.targetCPU,
|
| + this.hostCPU,
|
| + this.version,
|
| + this.pid: 0,
|
| + this.maxRSS: 0,
|
| + this.startTime,
|
| + this.isolates: const []});
|
| }
|
|
|