Chromium Code Reviews| Index: tests/html/cache_test.dart |
| =================================================================== |
| --- tests/html/cache_test.dart (revision 8732) |
| +++ tests/html/cache_test.dart (working copy) |
| @@ -7,7 +7,7 @@ |
| useHtmlConfiguration(); |
| test('ApplicationCache', () { |
| DOMApplicationCache appCache = window.applicationCache; |
| - Expect.equals("UNCACHED", cacheStatusToString(appCache.status)); |
| + expect(cacheStatusToString(appCache.status), equals("UNCACHED")); |
| }); |
| } |