diff options
author | Dalf <alex@al-f.net> | 2019-08-05 15:43:01 +0200 |
---|---|---|
committer | Dalf <alex@al-f.net> | 2019-08-05 15:43:01 +0200 |
commit | 9ff500181624e996febb60bf4f6378fc749f7f9a (patch) | |
tree | d824897fd5408f4f5cf36c9fa68a1b5686703d18 /tests | |
parent | 91a59ff3502803611953820e2923348440f807d0 (diff) | |
download | searxng-9ff500181624e996febb60bf4f6378fc749f7f9a.tar.gz searxng-9ff500181624e996febb60bf4f6378fc749f7f9a.zip |
[fix] arxiv engine
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/engines/test_arxiv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/engines/test_arxiv.py b/tests/unit/engines/test_arxiv.py index b32c0e605..83c4f8595 100644 --- a/tests/unit/engines/test_arxiv.py +++ b/tests/unit/engines/test_arxiv.py @@ -8,7 +8,7 @@ from searx.testing import SearxTestCase class TestBaseEngine(SearxTestCase): def test_request(self): - query = 'test_query' + query = 'test_query'.encode('utf-8') dicto = defaultdict(dict) dicto['pageno'] = 1 params = arxiv.request(query, dicto) |