From 5a540e4f69792502f6dc8b7c473beb08e46d60c8 Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Fri, 18 Oct 2024 12:23:34 -0500 Subject: [PATCH] chore(shorebird_cli): add missing trailing comma --- packages/shorebird_cli/test/src/network_checker_test.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/shorebird_cli/test/src/network_checker_test.dart b/packages/shorebird_cli/test/src/network_checker_test.dart index 530c2741..e4a99855 100644 --- a/packages/shorebird_cli/test/src/network_checker_test.dart +++ b/packages/shorebird_cli/test/src/network_checker_test.dart @@ -141,7 +141,10 @@ void main() { ), throwsA( isA().having( - (e) => e.message, 'message', equals('Upload timed out')), + (e) => e.message, + 'message', + equals('Upload timed out'), + ), ), ); });