diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2022-08-13 12:36:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-13 12:36:34 +0200 |
| commit | 0043190643f4c5071d311199c6efc8cd90637339 (patch) | |
| tree | 203584c6da74dc62b3e792246f1168b5c0a859a4 /tests/unit | |
| parent | b56848e8d0411f893f7459e86efe9ae12258a8ec (diff) | |
| parent | 3b0f9c07b2f007b0767787da80b49827f752f528 (diff) | |
Merge pull request #1655 from return42/fix-opensearch
[fix] improve OpenSearch description
Diffstat (limited to 'tests/unit')
| -rw-r--r-- | tests/unit/test_webapp.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py index 558cc6bb3..9f10df908 100644 --- a/tests/unit/test_webapp.py +++ b/tests/unit/test_webapp.py @@ -244,7 +244,9 @@ class ViewsTestCase(SearxTestCase): def test_opensearch_xml(self): result = self.app.get('/opensearch.xml') self.assertEqual(result.status_code, 200) - self.assertIn(b'<Description>a privacy-respecting, hackable metasearch engine</Description>', result.data) + self.assertIn( + b'<Description>SearXNG is a metasearch engine that respects your privacy.</Description>', result.data + ) def test_favicon(self): result = self.app.get('/favicon.ico') |