logo

searx

My custom branche(s) on searx, a meta-search engine
commit: b70f16c8c9c967f64d45937fc057f0b3c09fd912
parent: 5d9d04a16e0becad65b55351503b8a015551847b
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Fri,  9 May 2014 02:16:55 +0200

[fix] test updates

Diffstat:

Msearx/tests/test_webapp.py4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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 )