diff --git a/searx/templates/simple/opensearch_response_rss.xml b/searx/templates/simple/opensearch_response_rss.xml index 82d3f7c4e..5093643c9 100644 --- a/searx/templates/simple/opensearch_response_rss.xml +++ b/searx/templates/simple/opensearch_response_rss.xml @@ -3,9 +3,9 @@ xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"> - Searx search: {{ q|e }} + SearXNG search: {{ q|e }} {{ url_for('search', _external=True) }}?q={{ q|e }} - Search results for "{{ q|e }}" - searx + Search results for "{{ q|e }}" - SearXNG {{ number_of_results }} 1 {{ number_of_results }} diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py index 31bfdec3d..65705d164 100644 --- a/tests/unit/test_webapp.py +++ b/tests/unit/test_webapp.py @@ -180,7 +180,7 @@ class ViewsTestCase(SearxTestCase): # pylint: disable=missing-class-docstring, def test_search_rss(self): result = self.app.post('/search', data={'q': 'test', 'format': 'rss'}) - self.assertIn(b'Search results for "test" - searx', result.data) + self.assertIn(b'Search results for "test" - SearXNG', result.data) self.assertIn(b'3', result.data)