summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2017-01-20 23:56:50 +0100
committerGitHub <noreply@github.com>2017-01-20 23:56:50 +0100
commit3a57a1a0d096f9b15eab14c65c9c2bab432097d5 (patch)
treec1e5ab56359ed3f23a17e6721cae1c4fbf6d88af /tests
parent57149661e4f90e5ad3a9a4c36bb5f31a1c7ec6aa (diff)
parent15eef0ebdb15af80c026302bef250dc7f4417951 (diff)
Merge pull request #832 from dalf/input_check
Input check
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_webapp.py2
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