Skip to content

Commit

Permalink
Fix pressEnterAdaptive and pressNumpadEnterAdaptive IME calls (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
angelosilvestre authored Oct 4, 2023
1 parent e070688 commit c573b22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/keyboard.dart
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ extension KeyboardInput on WidgetTester {
return;
}

await pressEnterWithIme();
await pressEnterWithIme(finder: finder, getter: getter);
}

Future<void> pressShiftEnter() async {
Expand Down Expand Up @@ -201,7 +201,7 @@ extension KeyboardInput on WidgetTester {
return;
}

await pressNumpadEnterWithIme();
await pressNumpadEnterWithIme(finder: finder, getter: getter);
}

Future<void> pressShiftNumpadEnter() async {
Expand Down

0 comments on commit c573b22

Please sign in to comment.