summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2022-01-31 11:31:07 +0100
committerMartin Fischer <martin@push-f.com>2022-02-01 06:28:26 +0100
commitb93711b45da7e8d851be5a3d55ebf6fbe5423efd (patch)
tree1698377a535775830d4bacb4f7af53c7b6f15799 /tests
parent08bb3a5f3a6bf2c13ca89accc3179481e22e1bc6 (diff)
[help] remove link from about.md title
Now that about.html extends page_with_header.html it already has a link to the start page and removing the link makes it easier to extract the page title from the Markdown for the following commit.
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_webapp.py2
1 files changed, 1 insertions, 1 deletions
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'<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')