diff options
| author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-12-28 15:53:03 +0100 |
|---|---|---|
| committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-12-28 15:53:03 +0100 |
| commit | 8f4814ade265378f421e622e944ff19e9e567f9c (patch) | |
| tree | 7b737f538301c4f24e7bf2f8a0ee6ec7565d014e /searx | |
| parent | 67698ad29a2cd2dba3976434814afd0ca7d53a50 (diff) | |
[fix] fix test
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 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( |