diff options
author | Martin Fischer <martin@push-f.com> | 2022-01-31 11:31:07 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-02-01 06:28:26 +0100 |
commit | b93711b45da7e8d851be5a3d55ebf6fbe5423efd (patch) | |
tree | 1698377a535775830d4bacb4f7af53c7b6f15799 /tests | |
parent | 08bb3a5f3a6bf2c13ca89accc3179481e22e1bc6 (diff) | |
download | searxng-b93711b45da7e8d851be5a3d55ebf6fbe5423efd.tar.gz searxng-b93711b45da7e8d851be5a3d55ebf6fbe5423efd.zip |
[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.py | 2 |
1 files changed, 1 insertions, 1 deletions
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') |