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

Unified Diff: runtime/observatory/tests/service/developer_service_get_isolate_id_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/service/developer_service_get_isolate_id_test.dart
diff --git a/runtime/observatory/tests/service/developer_service_get_isolate_id_test.dart b/runtime/observatory/tests/service/developer_service_get_isolate_id_test.dart
index f808a0aa99cc3a622a0ff5f76b8b36c9a1bbaa68..f3a24b07b5d324adff991eda496c83492591a1f9 100644
--- a/runtime/observatory/tests/service/developer_service_get_isolate_id_test.dart
+++ b/runtime/observatory/tests/service/developer_service_get_isolate_id_test.dart
@@ -12,6 +12,7 @@ import 'package:unittest/unittest.dart';
import 'service_test_common.dart';
import 'test_helper.dart';
+
// testee state.
String selfId;
Core.Isolate childIsolate;
@@ -55,7 +56,8 @@ var tests = [
// Grab the child isolate.
localChildIsolate =
- vm.isolates.firstWhere((Service.Isolate i) => i != initialIsolate);
+ vm.isolates.firstWhere(
+ (Service.Isolate i) => i != initialIsolate);
expect(localChildIsolate, isNotNull);
// Reload the initial isolate.
@@ -84,4 +86,5 @@ var tests = [
}
];
-main(args) async => runVMTests(args, tests, testeeConcurrent: testeeMain);
+main(args) async => runVMTests(args, tests,
+ testeeConcurrent: testeeMain);

Powered by Google App Engine
This is Rietveld 408576698