diff options
author | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2014-12-13 20:30:19 +0100 |
---|---|---|
committer | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2014-12-13 20:30:19 +0100 |
commit | b2f5f655959597ff42ca908d401a6b5909d15eec (patch) | |
tree | 67a937eccee3dd98477c55fc8898b7bd41ecca7f /searx | |
parent | 8fb6ea1bf12f6a167b8361795e234876f43d6273 (diff) | |
download | searxng-b2f5f655959597ff42ca908d401a6b5909d15eec.tar.gz searxng-b2f5f655959597ff42ca908d401a6b5909d15eec.zip |
Correct test case
Add the alt in favicon
Diffstat (limited to 'searx')
-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 7771567f0..b922a3675 100644 --- a/searx/tests/test_webapp.py +++ b/searx/tests/test_webapp.py @@ -49,7 +49,7 @@ class ViewsTestCase(SearxTestCase): ) result = self.app.post('/', data={'q': 'test'}) self.assertIn( - '<h3 class="result_title"> <img width="14" height="14" class="favicon" src="static/default/img/icon_youtube.ico" /><a href="http://first.test.xyz">First <span class="highlight">Test</span></a></h3>', # noqa + '<h3 class="result_title"> <img width="14" height="14" class="favicon" src="static/default/img/icon_youtube.ico" alt="youtube" /><a href="http://first.test.xyz">First <span class="highlight">Test</span></a></h3>', # noqa result.data ) self.assertIn( |