From d3bd10229195a3e31c0daa61b8ea0ed1525249e4 Mon Sep 17 00:00:00 2001 From: Dmitry Krutskikh Date: Fri, 15 Jul 2022 10:12:16 +0300 Subject: [PATCH] chore: added missed trailing commas --- test/bottom_sheet_test.dart | 11 ++++++----- test/sticky_bottom_sheet_test.dart | 11 ++++++----- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/test/bottom_sheet_test.dart b/test/bottom_sheet_test.dart index 9c7c5d5..51b3d77 100644 --- a/test/bottom_sheet_test.dart +++ b/test/bottom_sheet_test.dart @@ -377,11 +377,12 @@ void main() { await tester.pumpWidget(app); expect( - () => showBottomSheet( - barrierColor: Colors.red, - isModal: false, - ), - throwsA(isA())); + () => showBottomSheet( + barrierColor: Colors.red, + isModal: false, + ), + throwsA(isA()), + ); }, ); }, diff --git a/test/sticky_bottom_sheet_test.dart b/test/sticky_bottom_sheet_test.dart index 900a90d..83df985 100644 --- a/test/sticky_bottom_sheet_test.dart +++ b/test/sticky_bottom_sheet_test.dart @@ -144,11 +144,12 @@ void main() { await tester.pumpWidget(app); expect( - () => showStickyBottomSheet( - barrierColor: Colors.red, - isModal: false, - ), - throwsA(isA())); + () => showStickyBottomSheet( + barrierColor: Colors.red, + isModal: false, + ), + throwsA(isA()), + ); }, ); }