From b70f16c8c9c967f64d45937fc057f0b3c09fd912 Mon Sep 17 00:00:00 2001 From: Adam Tauber Date: Fri, 9 May 2014 02:16:55 +0200 Subject: [PATCH] [fix] test updates --- searx/tests/test_webapp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 )