summaryrefslogtreecommitdiff
path: root/tests/unit/test_webapp.py
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarIT.de>2021-11-27 00:34:22 +0100
committerGitHub <noreply@github.com>2021-11-27 00:34:22 +0100
commit96cb7123bb73a517de41582930ce3be0c13e533e (patch)
tree2055768748afdd8d77731589ee3f899c6ea69ef2 /tests/unit/test_webapp.py
parent27c1b9f6608035cf42aa6216cbd646d55487ad5f (diff)
parentc443e56458c7634315e14ebbdc0e7563a84af08f (diff)
Merge pull request #553 from return42/fix-oscar
[fix] oscar theme: use SearXNG logo and wordmark
Diffstat (limited to 'tests/unit/test_webapp.py')
-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 cfaa4fb90..43b631cb8 100644
--- a/tests/unit/test_webapp.py
+++ b/tests/unit/test_webapp.py
@@ -83,7 +83,7 @@ class ViewsTestCase(SearxTestCase):
result = self.app.post('/')
self.assertEqual(result.status_code, 200)
self.assertIn(b'<div class="text-hide center-block" id="main-logo">'
- + b'<img class="center-block img-responsive" src="/static/themes/oscar/img/logo_searx_a.png"'
+ + b'<img class="center-block img-responsive" src="/static/themes/oscar/img/searxng.svg"'
+ b' alt="searx logo" />SearXNG</div>', result.data)
def test_index_html_post(self):