Chromium Code Reviews| Index: tests/isolate/spawn_function_custom_class_test.dart |
| =================================================================== |
| --- tests/isolate/spawn_function_custom_class_test.dart (revision 14804) |
| +++ tests/isolate/spawn_function_custom_class_test.dart (working copy) |
| @@ -27,7 +27,7 @@ |
| main() { |
| test('message - reply chain', () { |
| ReceivePort port = new ReceivePort(); |
| - port.receive(expectAsync(msg, _) { |
| + port.receive((msg, _) { |
| port.close(); |
| expect(msg, equals('re: hi there')); |
| }); |