Chromium Code Reviews| Index: tests/html/css_rule_list_test.dart |
| =================================================================== |
| --- tests/html/css_rule_list_test.dart (revision 14114) |
| +++ tests/html/css_rule_list_test.dart (working copy) |
| @@ -10,6 +10,6 @@ |
| test("ClientRectList test", () { |
| var sheet = document.styleSheets[0]; |
| List<CSSRule> rulesList = sheet.cssRules; |
| - Expect.isTrue(rulesList is List<CSSRule>); |
| + expect(rulesList, new isInstanceOf<List<CSSRule>>('List<CSSRule>')); |
| }); |
| } |