From ec3ce00fc5e656666eecddb32c0673788dcba24f Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 21 Oct 2025 17:01:35 -0700 Subject: [PATCH] _graphical_input: hit ctrl-c after typing garbage This avoids breaking the font check test that follows. Signed-off-by: Adam Williamson --- tests/_graphical_input.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/_graphical_input.pm b/tests/_graphical_input.pm index 0ce6f1c1..1f39d1ad 100644 --- a/tests/_graphical_input.pm +++ b/tests/_graphical_input.pm @@ -69,6 +69,8 @@ sub run { # expected layout configuration; e.g. for French we should # see 'ytreza', for Russian we should see 'некуцйytrewq' assert_screen 'desktop_input_expected_string'; + # clear the garbage for next command + send_key 'ctrl-c'; } }