diff options
| author | benpiano800 <51756721+benpiano800@users.noreply.github.com> | 2025-05-29 14:59:06 -0500 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-05-30 09:33:57 +0200 |
| commit | 37d851fb23935166ac7714a83c7273ce712bece0 (patch) | |
| tree | 19ba677a7cc0e51a4900d8c4622947f496c2a472 /tests/robot | |
| parent | 1b424b8d541d3cde1d40aa52b59cbcc38259ce3e (diff) | |
[mod] UI footer: correct capitalization of "SearXNG" in base.html
Diffstat (limited to 'tests/robot')
| -rw-r--r-- | tests/robot/test_webapp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/robot/test_webapp.py b/tests/robot/test_webapp.py index bca071409..353fadaa4 100644 --- a/tests/robot/test_webapp.py +++ b/tests/robot/test_webapp.py @@ -9,7 +9,7 @@ url = "http://localhost:11111/" def test_index(browser): # Visit URL browser.visit(url) - assert browser.is_text_present('searxng') + assert browser.is_text_present('SearXNG') def test_404(browser): @@ -20,7 +20,7 @@ def test_404(browser): def test_about(browser): browser.visit(url) - browser.links.find_by_text('searxng').click() + browser.links.find_by_text('SearXNG').click() assert browser.is_text_present('Why use it?') |