From 8ce8a7fe65cfa394b4b084f0a994d53dd694653f Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 25 Jul 2022 16:50:17 -0700 Subject: [PATCH] clocks/world: search for "Reykjav" not "Reykjavik" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The city is called Reykjavík (note the í). Previously our search worked because the search function also looked in the name of the timezone, and the *timezone* name is "Atlantic/Reykjavik" - i.e. it's really Latin-ized in the name of the timezone. However, upstream intentionally stopped including the timezone name in search matches: https://gitlab.gnome.org/GNOME/gnome-clocks/-/merge_requests/199 so that doesn't work any more. Just searching for "Reykjav" should solve the problem. Signed-off-by: Adam Williamson --- tests/applications/clocks/world.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/applications/clocks/world.pm b/tests/applications/clocks/world.pm index b910682a..b3623781 100644 --- a/tests/applications/clocks/world.pm +++ b/tests/applications/clocks/world.pm @@ -31,7 +31,7 @@ sub run { # Add a new location using the keyboard shortcut send_key("ctrl-n"); wait_still_screen(2); - type_very_safely("Reykjavik"); + type_very_safely("Reykjav"); assert_and_click("gnome_city_button_reykjavik"); assert_and_click("gnome_add_button_blue"); assert_screen("clocks_city_added_reykjavik");