From 32f28fac9afe1372756a419e9ca19aaa4fb05b28 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira <62367544+tilucasoli@users.noreply.github.com> Date: Tue, 30 Jan 2024 13:29:29 -0300 Subject: [PATCH] solve comments --- test/src/specs/image/image_attribute_test.dart | 1 - test/src/specs/image/image_widget_test.dart | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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(),