Skip to content

Commit

Permalink
fix: dart formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
thisissandipp committed Aug 7, 2024
1 parent 9544e36 commit 979d383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/helpers/link_helper_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down

0 comments on commit 979d383

Please sign in to comment.