diff options
| author | Noémi Ványi <kvch@users.noreply.github.com> | 2020-04-15 23:33:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-15 23:33:16 +0200 |
| commit | fcb44c654228a210ed66533f6aa7847035cbf985 (patch) | |
| tree | c681cc52463ae6fab9f68c36e4f1edff6df84261 /tests/unit | |
| parent | 4f90fb6a9236a9699e80c249153ba372bf308cb8 (diff) | |
| parent | 4eddbca81d7a9f7d2c8b7059a2b4d0787804cbb0 (diff) | |
Merge branch 'master' into fix_startpage_ValueError_on_spanish_datetime
Diffstat (limited to 'tests/unit')
| -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 ) |