From 37d851fb23935166ac7714a83c7273ce712bece0 Mon Sep 17 00:00:00 2001 From: benpiano800 <51756721+benpiano800@users.noreply.github.com> Date: Thu, 29 May 2025 14:59:06 -0500 Subject: [mod] UI footer: correct capitalization of "SearXNG" in base.html --- tests/robot/test_webapp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') 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?') -- cgit v1.2.3