| Index: tests/isolate/isolate_current_test.dart
|
| diff --git a/tests/isolate/isolate_current_test.dart b/tests/isolate/isolate_current_test.dart
|
| index 671dca44fa6de2200a2e27a6fb3da4ca2f015e1e..e2e2d997386d1e0ee3f4e771a96f979a02b5eca4 100644
|
| --- a/tests/isolate/isolate_current_test.dart
|
| +++ b/tests/isolate/isolate_current_test.dart
|
| @@ -3,6 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| library isolate_current_test;
|
| +
|
| import "dart:isolate";
|
| import "dart:async";
|
| import "package:expect/expect.dart";
|
| @@ -118,12 +119,11 @@ void expectCurrent(args) {
|
| }
|
|
|
| /** Convert isolate to list (of control port and capabilities). */
|
| -i2l(Isolate isolate) => [isolate.controlPort,
|
| - isolate.pauseCapability,
|
| - isolate.terminateCapability];
|
| +i2l(Isolate isolate) =>
|
| + [isolate.controlPort, isolate.pauseCapability, isolate.terminateCapability];
|
| /** Convert list to isolate. */
|
| -l2i(List list) => new Isolate(list[0], pauseCapability: list[1],
|
| - terminateCapability: list[2]);
|
| +l2i(List list) => new Isolate(list[0],
|
| + pauseCapability: list[1], terminateCapability: list[2]);
|
|
|
| /** Identity transformation. */
|
| id(Isolate isolate) => isolate;
|
|
|