| Index: tests/html/xmlelement_test.dart
|
| diff --git a/tests/html/xmlelement_test.dart b/tests/html/xmlelement_test.dart
|
| index d3b1437c2eda67e26da6d6d885d6c6c5e354a838..151867337f6d146d1a7bf08644b10d9765e8f66f 100644
|
| --- a/tests/html/xmlelement_test.dart
|
| +++ b/tests/html/xmlelement_test.dart
|
| @@ -136,8 +136,8 @@ main() {
|
| });
|
|
|
| test('isEmpty', () {
|
| - Expect.isFalse(makeClassSet().isEmpty());
|
| - Expect.isTrue(makeElement().classes.isEmpty());
|
| + Expect.isFalse(makeClassSet().isEmpty);
|
| + Expect.isTrue(makeElement().classes.isEmpty);
|
| });
|
|
|
| test('length', () {
|
| @@ -570,7 +570,7 @@ main() {
|
| expectEmptyRect(rect.offset);
|
| expectEmptyRect(rect.scroll);
|
| expectEmptyRect(rect.bounding);
|
| - Expect.isTrue(rect.clientRects.isEmpty());
|
| + Expect.isTrue(rect.clientRects.isEmpty);
|
| }));
|
| });
|
| }
|
|
|