Chromium Code Reviews| Index: tests/isolate/v2_spawn_function_test.dart |
| =================================================================== |
| --- tests/isolate/v2_spawn_function_test.dart (revision 8345) |
| +++ tests/isolate/v2_spawn_function_test.dart (working copy) |
| @@ -16,7 +16,7 @@ |
| ReceivePort port = new ReceivePort(); |
| port.receive(expectAsync(msg, _) { |
| port.close(); |
| - expect(msg).equals('re: hi'); |
| + expect(msg, equals('re: hi')); |
| }); |
| SendPort s = spawnFunction(child); |