| Index: tests/isolate/nested_spawn2_test.dart
 | 
| diff --git a/tests/isolate/nested_spawn2_test.dart b/tests/isolate/nested_spawn2_test.dart
 | 
| index fbeaeef7c4a50273c869ada40ddfaff6abce3300..faf105dce1f2ef2dafc303be7af0b8691427236e 100644
 | 
| --- a/tests/isolate/nested_spawn2_test.dart
 | 
| +++ b/tests/isolate/nested_spawn2_test.dart
 | 
| @@ -57,7 +57,7 @@ void main([args, port]) {
 | 
|    test("spawned isolate can spawn other isolates", () {
 | 
|      ReceivePort init = new ReceivePort();
 | 
|      Isolate.spawn(isolateA, init.sendPort);
 | 
| -    init.first.then(expectAsync((port) {
 | 
| +    return init.first.then(expectAsync((port) {
 | 
|        _call(port, "launch nested!", expectAsync((msg, replyTo) {
 | 
|          expect(msg[0], "0");
 | 
|          _call(replyTo, msg1, expectAsync((msg, replyTo) {
 | 
| 
 |