| Index: tests/html/element_test.dart
|
| diff --git a/tests/html/element_test.dart b/tests/html/element_test.dart
|
| index 10a7e5a74f4a102a477fa71803ae0be2c6794fcd..5295a076b5b4859fcc850434602ebaefc395efe6 100644
|
| --- a/tests/html/element_test.dart
|
| +++ b/tests/html/element_test.dart
|
| @@ -530,8 +530,8 @@ main() {
|
| });
|
|
|
| test('isEmpty', () {
|
| - Expect.isTrue(makeElement().elements.isEmpty());
|
| - Expect.isFalse(makeElementWithChildren().elements.isEmpty());
|
| + Expect.isTrue(makeElement().elements.isEmpty);
|
| + Expect.isFalse(makeElementWithChildren().elements.isEmpty);
|
| });
|
|
|
| test('length', () {
|
| @@ -672,8 +672,8 @@ main() {
|
| });
|
|
|
| test('isEmpty', () {
|
| - Expect.isTrue(getEmptyQueryAll().isEmpty());
|
| - Expect.isFalse(getQueryAll().isEmpty());
|
| + Expect.isTrue(getEmptyQueryAll().isEmpty);
|
| + Expect.isFalse(getQueryAll().isEmpty);
|
| });
|
|
|
| test('length', () {
|
|
|