diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2017-01-20 23:56:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-20 23:56:50 +0100 |
| commit | 3a57a1a0d096f9b15eab14c65c9c2bab432097d5 (patch) | |
| tree | c1e5ab56359ed3f23a17e6721cae1c4fbf6d88af /tests | |
| parent | 57149661e4f90e5ad3a9a4c36bb5f31a1c7ec6aa (diff) | |
| parent | 15eef0ebdb15af80c026302bef250dc7f4417951 (diff) | |
Merge pull request #832 from dalf/input_check
Input check
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/unit/test_webapp.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py index ac5bf8c9d..5e5f0b4bf 100644 --- a/tests/unit/test_webapp.py +++ b/tests/unit/test_webapp.py @@ -46,6 +46,8 @@ class ViewsTestCase(SearxTestCase): Search.search = search_mock def get_current_theme_name_mock(override=None): + if override: + return override return 'legacy' webapp.get_current_theme_name = get_current_theme_name_mock |