From b8628031048d42adc5eb7bf20f43bc2c514a6f7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20R=C5=AF=C5=BEi=C4=8Dka?= Date: Wed, 17 Sep 2025 13:35:59 +0200 Subject: [PATCH] Comment on sleeps to make AI happy --- tests/applications/calculator/functions.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/applications/calculator/functions.pm b/tests/applications/calculator/functions.pm index 463fe336..c4b4893c 100644 --- a/tests/applications/calculator/functions.pm +++ b/tests/applications/calculator/functions.pm @@ -15,13 +15,14 @@ sub use_function { send_key("ret"); assert_screen("calc_result_$function"); assert_and_click("calc_button_clear"); + # Stop for a moment to let the Calculator clean entry field sleep(1); } sub run { my $self = shift; # Wait until everything settles. - sleep 5; + sleep(5); use_function("cos", "trigonometry", "45"); use_function("re", "complex", "20");