summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2014-05-09 02:16:55 +0200
committerAdam Tauber <asciimoo@gmail.com>2014-05-09 02:16:55 +0200
commitb70f16c8c9c967f64d45937fc057f0b3c09fd912 (patch)
tree0cc38f68705533f9e48ce6fa869613e3be77d653 /searx
parent5d9d04a16e0becad65b55351503b8a015551847b (diff)
downloadsearxng-b70f16c8c9c967f64d45937fc057f0b3c09fd912.tar.gz
searxng-b70f16c8c9c967f64d45937fc057f0b3c09fd912.zip
[fix] test updates
Diffstat (limited to 'searx')
-rw-r--r--searx/tests/test_webapp.py4
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
)