summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBnyro <bnyro@tutanota.com>2024-10-19 16:54:51 +0200
committerMarkus Heiser <markus.heiser@darmarIT.de>2024-11-25 09:34:02 +0100
commit98f9a380eda20f691f8620197deeac4d648817fe (patch)
treee713e62c64eec2b993b2a7ef6506d8ed079e59d8 /tests
parent68b4961b817b5084baefa7b98271aa5556195431 (diff)
downloadsearxng-98f9a380eda20f691f8620197deeac4d648817fe.tar.gz
searxng-98f9a380eda20f691f8620197deeac4d648817fe.zip
[chore] rss: rename from searx to SearXNG
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 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'<description>Search results for "test" - searx</description>', result.data)
+ self.assertIn(b'<description>Search results for "test" - SearXNG</description>', result.data)
self.assertIn(b'<opensearch:totalResults>3</opensearch:totalResults>', result.data)