diff --git a/searx/tests/test_webapp.py b/searx/tests/test_webapp.py index 67b2c4bd..1d12b3a8 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( - '

First Test

', # noqa + '

First Test

', # noqa result.data ) self.assertIn( - '

first test content

', + '

first test content

', result.data )