diff options
author | Adam Tauber <asciimoo@gmail.com> | 2015-12-17 15:37:41 +0100 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2015-12-17 15:37:41 +0100 |
commit | 1f228c01cfd7c0ab0a9b36f69fe4aad667abd864 (patch) | |
tree | dfa074342684f9bb0009713b4e3a0cc6a682c074 /searx/tests | |
parent | d8f8bdc951f40fa56f1ff61306a78a28958dd41b (diff) | |
parent | 46bbea48f991769cf13bc4d7675094b0477a4559 (diff) | |
download | searxng-1f228c01cfd7c0ab0a9b36f69fe4aad667abd864.tar.gz searxng-1f228c01cfd7c0ab0a9b36f69fe4aad667abd864.zip |
Merge pull request #466 from GreenLunar/master
Update OpenSearch Description
Diffstat (limited to 'searx/tests')
-rw-r--r-- | searx/tests/test_webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/tests/test_webapp.py b/searx/tests/test_webapp.py index 1d9cc649c..071c01df3 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('<Description>Search searx</Description>', result.data) + self.assertIn('<Description>a privacy-respecting, hackable metasearch engine</Description>', result.data) def test_favicon(self): result = self.app.get('/favicon.ico') |