diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-01-01 14:06:34 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-01-01 14:06:34 +0100 |
| commit | c7cbd38fcc60601dd3b41df8a3a234c079f5dc0b (patch) | |
| tree | f0d538952d5d683d8d22718a855fdca40f4ebab4 /searx/tests/test_webapp.py | |
| parent | 213667b1ef93b7932aeba58aed58a0fef83749a3 (diff) | |
| parent | 8f4814ade265378f421e622e944ff19e9e567f9c (diff) | |
Merge pull request #164 from pointhi/favicons
improve Favicons
Diffstat (limited to 'searx/tests/test_webapp.py')
| -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 35ae49343..75ff585cc 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" alt="youtube" /><a href="http://second.test.xyz">Second <span class="highlight">Test</span></a></h3>', # noqa + '<h3 class="result_title"><img width="14" height="14" class="favicon" src="static/default/img/icons/icon_youtube.ico" alt="youtube" /><a href="http://second.test.xyz">Second <span class="highlight">Test</span></a></h3>', # noqa result.data ) self.assertIn( |