From 979d383412a3de168b966892d6d29d265fac3e3d Mon Sep 17 00:00:00 2001 From: Sandip Date: Thu, 8 Aug 2024 01:02:41 +0530 Subject: [PATCH] fix: dart formatting --- test/helpers/link_helper_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers/link_helper_test.dart b/test/helpers/link_helper_test.dart index b2b0ead..7bad619 100644 --- a/test/helpers/link_helper_test.dart +++ b/test/helpers/link_helper_test.dart @@ -38,7 +38,7 @@ void main() { test('executes the onError callback when it cannot launch', () async { var wasCalled = false; when(() => urlLauncher.canLaunch(url)).thenAnswer((_) async => false); - await openLink(uri,onError: () => wasCalled = true); + await openLink(uri, onError: () => wasCalled = true); await expectLater(wasCalled, isTrue); });