Skip to content

Commit

Permalink
fix: Fix mock lock provider get details function signature
Browse files Browse the repository at this point in the history
  • Loading branch information
rlperez committed Nov 18, 2021
1 parent 15edc76 commit 37a9b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/providers/lock_provider_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import 'package:yonomi_platform_sdk/third_party/yonomi_graphql_schema/schema.doc
import 'package:yonomi_platform_sdk/yonomi-sdk.dart';

class MockGetLockDetailsFunction extends Mock {
Future<Device> call(Request request, String id);
Future<Device> call(Request? request, String? id);
}

class MockSendLockUnlockFunction extends Mock {
Expand Down

0 comments on commit 37a9b72

Please sign in to comment.