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

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

Issue 2767533002: Revert "Fix observatory tests broken by running dartfmt." (Closed)
Patch Set: 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/cpu_profile_table/element_test.dart
diff --git a/runtime/observatory/tests/observatory_ui/cpu_profile_table/element_test.dart b/runtime/observatory/tests/observatory_ui/cpu_profile_table/element_test.dart
index f4bd1c8330e0a04041a19a8276de469e5017f85b..abe2db4323e47aff09a3885bc06f9429a72ff751 100644
--- a/runtime/observatory/tests/observatory_ui/cpu_profile_table/element_test.dart
+++ b/runtime/observatory/tests/observatory_ui/cpu_profile_table/element_test.dart
@@ -29,16 +29,18 @@ main() {
expect(e, isNotNull, reason: 'element correctly created');
});
test('elements created', () async {
- final controller =
- new StreamController<M.SampleProfileLoadingProgressEvent>.broadcast();
- final profiles = new IsolateSampleProfileRepositoryMock(getter:
- (M.IsolateRef i, M.SampleProfileTag t, bool clear, bool forceFetch) {
- expect(i, equals(isolate));
- expect(t, isNotNull);
- expect(clear, isFalse);
- expect(forceFetch, isFalse);
- return controller.stream;
- });
+ final controller
+ = new StreamController<M.SampleProfileLoadingProgressEvent>.broadcast();
+ final profiles = new IsolateSampleProfileRepositoryMock(
+ getter: (M.IsolateRef i, M.SampleProfileTag t, bool clear,
+ bool forceFetch) {
+ expect(i, equals(isolate));
+ expect(t, isNotNull);
+ expect(clear, isFalse);
+ expect(forceFetch, isFalse);
+ return controller.stream;
+ }
+ );
final e = new CpuProfileTableElement(vm, isolate, events, notifs, profiles);
document.body.append(e);
await e.onRendered.first;
@@ -47,19 +49,25 @@ main() {
expect(e.querySelectorAll(cTag).length, isZero);
expect(e.querySelectorAll(tTag).length, isZero);
controller.add(new SampleProfileLoadingProgressEventMock(
- progress: new SampleProfileLoadingProgressMock(
- status: M.SampleProfileLoadingStatus.fetching)));
+ progress: new SampleProfileLoadingProgressMock(
+ status: M.SampleProfileLoadingStatus.fetching
+ )
+ ));
await e.onRendered.first;
expect(e.querySelectorAll(sTag).length, equals(1));
expect(e.querySelectorAll(cTag).length, isZero);
expect(e.querySelectorAll(tTag).length, isZero);
controller.add(new SampleProfileLoadingProgressEventMock(
- progress: new SampleProfileLoadingProgressMock(
- status: M.SampleProfileLoadingStatus.loading)));
+ progress: new SampleProfileLoadingProgressMock(
+ status: M.SampleProfileLoadingStatus.loading
+ )
+ ));
controller.add(new SampleProfileLoadingProgressEventMock(
- progress: new SampleProfileLoadingProgressMock(
- status: M.SampleProfileLoadingStatus.loaded,
- profile: new SampleProfileMock())));
+ progress: new SampleProfileLoadingProgressMock(
+ status: M.SampleProfileLoadingStatus.loaded,
+ profile: new SampleProfileMock()
+ )
+ ));
controller.close();
await e.onRendered.first;
expect(e.querySelectorAll(sTag).length, equals(1));

Powered by Google App Engine
This is Rietveld 408576698