diff --git a/searx/tests/test_webapp.py b/searx/tests/test_webapp.py index 1d9cc649..071c01df 100644 --- a/searx/tests/test_webapp.py +++ b/searx/tests/test_webapp.py @@ -144,7 +144,7 @@ class ViewsTestCase(SearxTestCase): def test_opensearch_xml(self): result = self.app.get('/opensearch.xml') self.assertEqual(result.status_code, 200) - self.assertIn('Search searx', result.data) + self.assertIn('a privacy-respecting, hackable metasearch engine', result.data) def test_favicon(self): result = self.app.get('/favicon.ico')