Skip to content

Commit

Permalink
Fix failing lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Pante committed Oct 2, 2024
1 parent 06fb9b2 commit b788e10
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions forui/test/src/widgets/icon_golden_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,13 @@ void main() {
await tester.pumpWidget(
TestScaffold(
data: theme,
child: FIcon.raw(builder: (context, style, _) => Container(
color: style.color,
height: style.size,
width: style.size,
)),
child: FIcon.raw(
builder: (context, style, _) => Container(
color: style.color,
height: style.size,
width: style.size,
),
),
),
);

Expand Down

0 comments on commit b788e10

Please sign in to comment.