diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2017-10-13 21:36:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-13 21:36:21 +0200 |
| commit | c8a66a090a7bde3c8003b9dc6cb1d13359b5d667 (patch) | |
| tree | 314c503175756afe642e17302dcbd8b7be18de7b /tests/unit/engines/test_bing_videos.py | |
| parent | 1adc8d6e2604be1a159c936b0fd77efdd09c555e (diff) | |
| parent | db27c6fa5f2845c0ff533d324a51400f4a625cea (diff) | |
Merge pull request #1061 from a01200356/bing
[fix] Language support for Bing Images and Videos
Diffstat (limited to 'tests/unit/engines/test_bing_videos.py')
| -rw-r--r-- | tests/unit/engines/test_bing_videos.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unit/engines/test_bing_videos.py b/tests/unit/engines/test_bing_videos.py index 011b5410a..118754b25 100644 --- a/tests/unit/engines/test_bing_videos.py +++ b/tests/unit/engines/test_bing_videos.py @@ -8,6 +8,8 @@ from searx.testing import SearxTestCase class TestBingVideosEngine(SearxTestCase): def test_request(self): + bing_videos.supported_languages = ['fr-FR', 'en-US'] + query = 'test_query' dicto = defaultdict(dict) dicto['pageno'] = 1 |