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

Unified Diff: runtime/observatory/tests/observatory_ui/icdata_view/element_test.dart

Issue 2873013004: Omnibus Observatory UI fixes: (Closed)
Patch Set: Created 3 years, 7 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/icdata_view/element_test.dart
diff --git a/runtime/observatory/tests/observatory_ui/icdata_view/element_test.dart b/runtime/observatory/tests/observatory_ui/icdata_view/element_test.dart
index df1ee7f346fe6c53d43337ec122df371ab4a99b4..9599570054b14295545892321eccfb6c97c7e737 100644
--- a/runtime/observatory/tests/observatory_ui/icdata_view/element_test.dart
+++ b/runtime/observatory/tests/observatory_ui/icdata_view/element_test.dart
@@ -25,10 +25,10 @@ main() {
final retainedSizes = new RetainedSizeRepositoryMock();
final inbounds = new InboundReferencesRepositoryMock();
final paths = new RetainingPathRepositoryMock();
- final instances = new InstanceRepositoryMock();
+ final objects = new ObjectRepositoryMock();
test('instantiation', () {
final e = new ICDataViewElement(vm, isolate, icdata, events, notifs,
- icdatas, retainedSizes, reachableSizes, inbounds, paths, instances);
+ icdatas, retainedSizes, reachableSizes, inbounds, paths, objects);
expect(e, isNotNull, reason: 'element correctly created');
expect(e.isolate, equals(isolate));
expect(e.icdata, equals(icdata));
@@ -41,7 +41,7 @@ main() {
return icdata;
}, count: 1));
final e = new ICDataViewElement(vm, isolate, icdata, events, notifs,
- icdatas, retainedSizes, reachableSizes, inbounds, paths, instances);
+ icdatas, retainedSizes, reachableSizes, inbounds, paths, objects);
document.body.append(e);
await e.onRendered.first;
expect(e.children.length, isNonZero, reason: 'has elements');

Powered by Google App Engine
This is Rietveld 408576698