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); |