Index: tests/isolate/src/MandelIsolateTest.dart |
diff --git a/tests/isolate/src/MandelIsolateTest.dart b/tests/isolate/src/MandelIsolateTest.dart |
index e7cc482c27c9b2d54f58c77aa8e18962b0f16825..e658068ee5cfa30571de374b6d5651f3e75bca82 100644 |
--- a/tests/isolate/src/MandelIsolateTest.dart |
+++ b/tests/isolate/src/MandelIsolateTest.dart |
@@ -88,7 +88,7 @@ class LineProcessorClient { |
void processLine(int y) { |
_out.then((SendPort p) { |
- p.call(y).receive((List<int> message, SendPort replyTo) { |
+ p.call(y).then((List<int> message) { |
_state.notifyProcessedLine(this, y, message); |
}); |
}); |