Skip to content

Commit

Permalink
chore(automated): Lint commit and format
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions authored and thelukewalton committed Jan 15, 2025
1 parent 1158cff commit 91b0a32
Show file tree
Hide file tree
Showing 6 changed files with 1,798 additions and 2,170 deletions.
24 changes: 11 additions & 13 deletions test/src/components/search_bar/search_bar_test.mocks.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,20 @@ import 'search_bar_test.dart' as _i2;
class MockISearchBarEvents extends _i1.Mock implements _i2.ISearchBarEvents {
@override
void onChange(String? text) => super.noSuchMethod(
Invocation.method(#onChange, [text]),
returnValueForMissingStub: null,
);
Invocation.method(#onChange, [text]),
returnValueForMissingStub: null,
);

@override
void onSubmit(String? text) => super.noSuchMethod(
Invocation.method(#onSubmit, [text]),
returnValueForMissingStub: null,
);
Invocation.method(#onSubmit, [text]),
returnValueForMissingStub: null,
);

@override
_i3.Future<String?> onSpeech() =>
(super.noSuchMethod(
Invocation.method(#onSpeech, []),
returnValue: _i3.Future<String?>.value(),
returnValueForMissingStub: _i3.Future<String?>.value(),
)
as _i3.Future<String?>);
_i3.Future<String?> onSpeech() => (super.noSuchMethod(
Invocation.method(#onSpeech, []),
returnValue: _i3.Future<String?>.value(),
returnValueForMissingStub: _i3.Future<String?>.value(),
) as _i3.Future<String?>);
}
Loading

0 comments on commit 91b0a32

Please sign in to comment.