mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
typo
This commit is contained in:
parent
f5b71e98b6
commit
de24b98782
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ void main() {
|
|||
late CaffeineService service;
|
||||
|
||||
const methodChannel = MethodChannel('com.vodemn.lightmeter/keepScreenOn');
|
||||
Future<Object?>? cameraMethodCallSuccessHandler(MethodCall methodCall) async {
|
||||
Future<Object?>? methodCallSuccessHandler(MethodCall methodCall) async {
|
||||
switch (methodCall.method) {
|
||||
case "isKeepScreenOn":
|
||||
return true;
|
||||
|
@ -22,7 +22,7 @@ void main() {
|
|||
setUp(() {
|
||||
service = const CaffeineService();
|
||||
TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger
|
||||
.setMockMethodCallHandler(methodChannel, cameraMethodCallSuccessHandler);
|
||||
.setMockMethodCallHandler(methodChannel, methodCallSuccessHandler);
|
||||
});
|
||||
|
||||
tearDown(() {
|
||||
|
|
Loading…
Reference in a new issue