Skip to content

Commit 1496f19

Browse files
address test fix
1 parent de49584 commit 1496f19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/address_bar_and_search/test_search_suggestions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# Constants
1111
SEARCH_TERM_SPONSORED = "iphone"
12-
SEARCH_TERM_NON_SPONSORED = "wikimedia"
12+
SEARCH_TERM_NON_SPONSORED = "wiki"
1313
RETRY_LIMIT = 5
1414
SECONDS = 3
1515

@@ -72,5 +72,5 @@ def test_search_suggests_enabled(driver: Firefox):
7272
with driver.context(driver.CONTEXT_CHROME):
7373
nav.get_element("firefox-suggest")
7474
titles = nav.get_elements("suggestion-titles")
75-
found_non_sponsored = any("Wikipedia" in title.text for title in titles)
75+
found_non_sponsored = any("wikipedia" in title.text for title in titles)
7676
assert found_non_sponsored, "Non-sponsored suggestion not found"

0 commit comments

Comments
 (0)