From b93711b45da7e8d851be5a3d55ebf6fbe5423efd Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Mon, 31 Jan 2022 11:31:07 +0100 Subject: [PATCH] [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. --- searx/help/about.md | 2 +- tests/unit/test_webapp.py | 2 +- 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'

About searxng

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

About SearXNG

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