From b788e102d8a8eadf46980b74bac71075a53ab079 Mon Sep 17 00:00:00 2001 From: Matthias Ngeo Date: Wed, 2 Oct 2024 21:55:16 +0800 Subject: [PATCH] Fix failing lint --- forui/test/src/widgets/icon_golden_test.dart | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/forui/test/src/widgets/icon_golden_test.dart b/forui/test/src/widgets/icon_golden_test.dart index 812a81bce..6d5916815 100644 --- a/forui/test/src/widgets/icon_golden_test.dart +++ b/forui/test/src/widgets/icon_golden_test.dart @@ -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, + ), + ), ), );