diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2020-04-29 12:02:39 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-29 12:02:39 +0000 |
| commit | 0f4dbc4eca848d910fb4433e3d1c61fa7fcfa8de (patch) | |
| tree | d3b37c89b57aca471cddecaea44f8e9218cc487f /tests | |
| parent | 678d41d75bcdf14b17fa13f69aa323a9f8716faa (diff) | |
| parent | 7342806987aec05c50f12e149683609640ba66a0 (diff) | |
Merge branch 'master' into uwsgi_static
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/unit/test_webapp.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py index 72ace4850..f31332fa0 100644 --- a/tests/unit/test_webapp.py +++ b/tests/unit/test_webapp.py @@ -99,9 +99,9 @@ class ViewsTestCase(SearxTestCase): result = self.app.post('/', data={'q': 'test', 'format': 'csv'}) self.assertEqual( - b'title,url,content,host,engine,score\r\n' - b'First Test,http://first.test.xyz,first test content,first.test.xyz,startpage,\r\n' # noqa - b'Second Test,http://second.test.xyz,second test content,second.test.xyz,youtube,\r\n', # noqa + b'title,url,content,host,engine,score,type\r\n' + b'First Test,http://first.test.xyz,first test content,first.test.xyz,startpage,,result\r\n' # noqa + b'Second Test,http://second.test.xyz,second test content,second.test.xyz,youtube,,result\r\n', # noqa result.data ) |