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

Unified Diff: runtime/observatory/tests/observatory_ui/objectstore_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/objectstore_view/element_test.dart
diff --git a/runtime/observatory/tests/observatory_ui/objectstore_view/element_test.dart b/runtime/observatory/tests/observatory_ui/objectstore_view/element_test.dart
index fb56f538ebe46ab9e27512ed4c48ebe6d24177e4..00ee45409f39f0802bf5fd5bf06912feb6bf5353 100644
--- a/runtime/observatory/tests/observatory_ui/objectstore_view/element_test.dart
+++ b/runtime/observatory/tests/observatory_ui/objectstore_view/element_test.dart
@@ -15,10 +15,10 @@ main() {
final events = new EventRepositoryMock();
final notifs = new NotificationRepositoryMock();
final stores = new ObjectStoreRepositoryMock();
- final instances = new InstanceRepositoryMock();
+ final objects = new ObjectRepositoryMock();
test('instantiation', () {
final e = new ObjectStoreViewElement(
- vm, isolate, events, notifs, stores, instances);
+ vm, isolate, events, notifs, stores, objects);
expect(e, isNotNull, reason: 'element correctly created');
expect(e.isolate, equals(isolate));
});
@@ -34,9 +34,9 @@ main() {
expect(i, equals(isolate));
return store;
}, count: 1));
- final instances = new InstanceRepositoryMock();
+ final objects = new ObjectRepositoryMock();
final e = new ObjectStoreViewElement(
- vm, isolate, events, notifs, stores, instances);
+ vm, isolate, events, notifs, stores, 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