Index: tests/isolate/isolate_complex_messages_test.dart |
diff --git a/tests/isolate/isolate_complex_messages_test.dart b/tests/isolate/isolate_complex_messages_test.dart |
index 3a18ec5a4bcef3309f9d9ce1d8a331b0e38f0ff3..92c26d9bd71f30c1a4197f07ad55c5fb76ef0450 100644 |
--- a/tests/isolate/isolate_complex_messages_test.dart |
+++ b/tests/isolate/isolate_complex_messages_test.dart |
@@ -7,9 +7,11 @@ |
library IsolateComplexMessagesTest; |
import 'dart:isolate'; |
-import '../../pkg/unittest/lib/unittest.dart'; |
+import 'package:unittest/unittest.dart'; |
+import "remote_unittest_helper.dart"; |
-main() { |
+void main([args, port]) { |
+ if (testRemote(main, port)) return; |
test("complex messages are serialized correctly", () { |
ReceivePort local = new ReceivePort(); |
Isolate.spawn(logMessages, local.sendPort); |