Index: runtime/observatory/tests/observatory_ui/mocks/objects/heap_space.dart |
diff --git a/runtime/observatory/tests/observatory_ui/mocks/objects/heap_space.dart b/runtime/observatory/tests/observatory_ui/mocks/objects/heap_space.dart |
index 1f96ad8d972fd47c02228a0747cd44248c0d3eb3..da930a1cecdbfa8e94c43f7724be00a3c7eb25eb 100644 |
--- a/runtime/observatory/tests/observatory_ui/mocks/objects/heap_space.dart |
+++ b/runtime/observatory/tests/observatory_ui/mocks/objects/heap_space.dart |
@@ -12,9 +12,12 @@ class HeapSpaceMock implements M.HeapSpace { |
final Duration avgCollectionTime; |
final Duration totalCollectionTime; |
final Duration avgCollectionPeriod; |
- const HeapSpaceMock({this.used: 0, this.capacity: 1, this.collections: 0, |
- this.external: 1, |
- this.avgCollectionTime: const Duration(), |
- this.totalCollectionTime: const Duration(), |
- this.avgCollectionPeriod: const Duration()}); |
+ const HeapSpaceMock( |
+ {this.used: 0, |
+ this.capacity: 1, |
+ this.collections: 0, |
+ this.external: 1, |
+ this.avgCollectionTime: const Duration(), |
+ this.totalCollectionTime: const Duration(), |
+ this.avgCollectionPeriod: const Duration()}); |
} |