diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-15 09:19:26 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-15 09:19:26 +0100 |
| commit | 26b85659c0b7c9bf545dfe4edeedc3ccf247bc97 (patch) | |
| tree | 4123d4d529e59186f43293b9945c3d3e3fa64a18 /tests | |
| parent | 80f7b658047a3541697ef5ae1aae897817b3f43c (diff) | |
| parent | 8e727ac77f5db59c1b772d9fd7603b519badb35a (diff) | |
Merge branch 'master' of https://github.com/asciimoo/searx into filtron
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 ) |