summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--searx/help/about.md2
-rw-r--r--tests/unit/test_webapp.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/searx/help/about.md b/searx/help/about.md
index 521022414..dd7cd4515 100644
--- a/searx/help/about.md
+++ b/searx/help/about.md
@@ -1,4 +1,4 @@
-# About [searxng][url_for:index]
+# About SearXNG
SearXNG is a fork from the well-known [searx] [metasearch engine], aggregating
the results of other [search engines][url_for:preferences] while not storing
diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py
index fd7c72e60..60d59ccf8 100644
--- a/tests/unit/test_webapp.py
+++ b/tests/unit/test_webapp.py
@@ -176,7 +176,7 @@ class ViewsTestCase(SearxTestCase):
def test_about(self):
result = self.app.get('/about')
self.assertEqual(result.status_code, 200)
- self.assertIn(b'<h1>About <a href="/">searxng</a></h1>', result.data)
+ self.assertIn(b'<h1>About SearXNG</h1>', result.data)
def test_health(self):
result = self.app.get('/healthz')