Index: tests/isolate/illegal_msg_test.dart |
diff --git a/tests/isolate/illegal_msg_test.dart b/tests/isolate/illegal_msg_test.dart |
index 422ae39a55d48705ccbd60a907810e77363a62ab..2674696958cd35907ef46b152068608a920025f4 100644 |
--- a/tests/isolate/illegal_msg_test.dart |
+++ b/tests/isolate/illegal_msg_test.dart |
@@ -19,7 +19,7 @@ echo(sendPort) { |
main() { |
ReceivePort port = new ReceivePort(); |
- Future spawn = Isolate.spawn(echo, port.sendPort); |
+ Isolate.spawn(echo, port.sendPort); |
var caught_exception = false; |
var stream = port.asBroadcastStream(); |
asyncStart(); |