Skip to content

Commit

Permalink
🐛 forgot to add generics
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed Aug 12, 2023
1 parent fb9a05c commit fa49d32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chopper/lib/src/mocks.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ base class MockChopperLogRecord extends Mock with MockChopperLogRecordMixin {}

base class MockRequest extends Mock with MockRequestMixin {}

base class MockPartValue extends Mock with MockPartValueMixin {}
base class MockPartValue<T> extends Mock with MockPartValueMixin<T> {}

base class MockPartValueFile extends Mock with MockPartValueFileMixin {}
base class MockPartValueFile<T> extends Mock with MockPartValueFileMixin<T> {}

base class MockResponse extends Mock with MockResponseMixin {}

0 comments on commit fa49d32

Please sign in to comment.