Skip to content

Commit

Permalink
Update scalar_util_test.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
tilucasoli committed Jan 31, 2024
1 parent 9b570cc commit 1dd0a17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/src/attributes/scalars/scalar_util_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@ void main() {
const utility = ImageRepeatUtility(UtilityTestAttribute.new);
test('Properties are initialized correctly', () {
expect(utility.noRepeat().value, isA<ImageRepeat>());
expect(utility.repeat().value, isA<ImageRepeat>());
expect(utility().value, isA<ImageRepeat>());
expect(utility.repeatX().value, isA<ImageRepeat>());
expect(utility.repeatY().value, isA<ImageRepeat>());
expect(utility.noRepeat().value, ImageRepeat.noRepeat);
expect(utility.repeat().value, ImageRepeat.repeat);
expect(utility().value, ImageRepeat.repeat);
expect(utility.repeatX().value, ImageRepeat.repeatX);
expect(utility.repeatY().value, ImageRepeat.repeatY);
});
Expand Down

0 comments on commit 1dd0a17

Please sign in to comment.