| Index: tests/html/isolates_test.dart | 
| =================================================================== | 
| --- tests/html/isolates_test.dart	(revision 14156) | 
| +++ tests/html/isolates_test.dart	(working copy) | 
| @@ -39,10 +39,10 @@ | 
| final msg2 = 'bar'; | 
| port.call(msg1).then((response) { | 
| guardAsync(() { | 
| -        Expect.equals(responseFor(msg1), response); | 
| +        expect(response, equals(responseFor(msg1))); | 
| port.call(msg2).then((response) { | 
| guardAsync(() { | 
| -            Expect.equals(responseFor(msg2), response); | 
| +            expect(response, equals(responseFor(msg2))); | 
| callback(); | 
| }); | 
| }); | 
|  |