| Index: tests/isolate/src/Mixed2Test.dart
|
| diff --git a/tests/isolate/src/Mixed2Test.dart b/tests/isolate/src/Mixed2Test.dart
|
| index ae3e20d0305a3a5367f7a9cda1ea494b119778a8..f1a41da5d1d158e9e7fed8b1e0e63bf9fdcec63d 100644
|
| --- a/tests/isolate/src/Mixed2Test.dart
|
| +++ b/tests/isolate/src/Mixed2Test.dart
|
| @@ -107,9 +107,9 @@ class HeavyIsolate3 extends Isolate {
|
| }
|
|
|
| void test(TestExpectation expect) {
|
| - Promise<SendPort> heavy1 = expect.completes(new HeavyIsolate1().spawn());
|
| - Promise<SendPort> heavy2 = expect.completes(new HeavyIsolate2().spawn());
|
| - Promise<SendPort> heavy3 = expect.completes(new HeavyIsolate3().spawn());
|
| + Future<SendPort> heavy1 = expect.completes(new HeavyIsolate1().spawn());
|
| + Future<SendPort> heavy2 = expect.completes(new HeavyIsolate2().spawn());
|
| + Future<SendPort> heavy3 = expect.completes(new HeavyIsolate3().spawn());
|
|
|
| heavy2.then(expect.runs1((SendPort heavy2Port) {
|
| heavy3.then(expect.runs1((SendPort heavy3Port) {
|
|
|