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

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

Issue 2751423005: Run dartfmt on all files under runtime. (Closed)
Patch Set: Run dartfmt on all files under runtime. Created 3 years, 9 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/context_view/element_test.dart
diff --git a/runtime/observatory/tests/observatory_ui/context_view/element_test.dart b/runtime/observatory/tests/observatory_ui/context_view/element_test.dart
index 428aefd179f11db2e5124cc5dc283cd72e4140e7..01e85d68af58fb5bfcf04470e81ece33831ed4cc 100644
--- a/runtime/observatory/tests/observatory_ui/context_view/element_test.dart
+++ b/runtime/observatory/tests/observatory_ui/context_view/element_test.dart
@@ -28,23 +28,20 @@ main() {
final instances = new InstanceRepositoryMock();
test('instantiation', () {
final e = new ContextViewElement(vm, isolate, context, events, notifs,
- contexts, retainedSizes, reachableSizes,
- inbounds, paths, instances);
+ contexts, retainedSizes, reachableSizes, inbounds, paths, instances);
expect(e, isNotNull, reason: 'element correctly created');
expect(e.isolate, equals(isolate));
expect(e.context, equals(context));
});
test('elements created after attachment', () async {
final contexts = new ContextRepositoryMock(
- getter: expectAsync((i, id) async {
- expect(i, equals(isolate));
- expect(id, equals(context.id));
- return context;
- }, count: 1)
- );
+ getter: expectAsync((i, id) async {
+ expect(i, equals(isolate));
+ expect(id, equals(context.id));
+ return context;
+ }, count: 1));
final e = new ContextViewElement(vm, isolate, context, events, notifs,
- contexts, retainedSizes, reachableSizes,
- inbounds, paths, instances);
+ contexts, retainedSizes, reachableSizes, inbounds, paths, instances);
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