diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-01-01 17:54:33 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-01-01 17:54:33 +0100 |
| commit | 8151585918a3d86b9dac5bef782581d13a14179f (patch) | |
| tree | fd0ca7ab9a26a2be08bcbd8081a6c1309eca13c2 /searx/tests/test_webapp.py | |
| parent | 9f12605f7ebc9ca5575fc4ee9900e0e821366c4d (diff) | |
[fix] static file paths
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 75ff585cc..a979e786d 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/icons/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/themes/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( |