diff --git a/test/src/specs/image/image_attribute_test.dart b/test/src/specs/image/image_attribute_test.dart index 7cd4fbdcc..2626f5f52 100644 --- a/test/src/specs/image/image_attribute_test.dart +++ b/test/src/specs/image/image_attribute_test.dart @@ -62,7 +62,6 @@ void main() { ); final props = attribute.props; - expect(props.length, 9); expect(props[0], 100); expect(props[1], 200); expect(props[2], const ColorDto(Colors.black)); diff --git a/test/src/specs/image/image_widget_test.dart b/test/src/specs/image/image_widget_test.dart index 22bbfd755..b672477b1 100644 --- a/test/src/specs/image/image_widget_test.dart +++ b/test/src/specs/image/image_widget_test.dart @@ -15,7 +15,7 @@ void main() { image.width(152), image.height(152), image.color.black(), - image.repeat.repeat(), + image.imageRepeat.repeat(), image.fit.fill(), image.centerSlice.fromLTRB(1, 2, 3, 4), image.alignment.bottomLeft(),