Unverified Commit 5931b4f2 authored by Camille Simon's avatar Camille Simon Committed by GitHub

Increase delay for checking integration_ui_keyboard_resize test success (#141301)

Increases delay for checking keyboard resizing to potentially accommodate the occasional longer delay of the Pixel 7 Pro.

Intended to address https://github.com/flutter/flutter/issues/140645.
parent e20e9510
......@@ -32,7 +32,7 @@ void main() {
await driver.tap(defaultTextField);
bool heightTextDidShrink = false;
for (int i = 0; i < 3; ++i) {
for (int i = 0; i < 6; ++i) {
await Future<void>.delayed(const Duration(seconds: 1));
// Measure the height with keyboard displayed.
final String heightWithKeyboardShown = await driver.getText(heightText);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment