diff options
| -rw-r--r-- | searx/tests/test_webapp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/tests/test_webapp.py b/searx/tests/test_webapp.py index 67b2c4bde..1d12b3a87 100644 --- a/searx/tests/test_webapp.py +++ b/searx/tests/test_webapp.py @@ -47,11 +47,11 @@ class ViewsTestCase(SearxTestCase): ) result = self.app.post('/', data={'q': 'test'}) self.assertIn( - '<h3 class="result_title"><a href="http://first.test.xyz">First <b>Test</b></a></h3>', # noqa + '<h3 class="result_title"><a href="http://first.test.xyz">First <span class="highlight">Test</span></a></h3>', # noqa result.data ) self.assertIn( - '<p class="content">first <b>test</b> content<br /></p>', + '<p class="content">first <span class="highlight">test</span> content<br /></p>', result.data ) |