diff --git a/searx/help/about.md b/searx/help/about.md index 52102241..dd7cd451 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 fd7c72e6..60d59ccf 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'

About searxng

', result.data) + self.assertIn(b'

About SearXNG

', result.data) def test_health(self): result = self.app.get('/healthz')