diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2020-06-11 10:15:15 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-06-11 10:15:15 +0200 |
commit | eae34816881b97c2be8b24630244a27ec0a09c6d (patch) | |
tree | 6de5f0aeb86f81add25533b1db6b1d75c59a7e75 /tests/unit/test_webapp.py | |
parent | aa7c043ff40bd1c1ec2e81748627aeac24608580 (diff) | |
download | searxng-eae34816881b97c2be8b24630244a27ec0a09c6d.tar.gz searxng-eae34816881b97c2be8b24630244a27ec0a09c6d.zip |
[fix] commit 2c6531b2 breaks the unit test, this is a hotfix
commit 2c6531b2 does not only break the unit test, it is a significant change of
the data model and the searx search-syntax model (UI) without any discussion nor
documentation.
At the end, adding routes to instant answers is a nice feature but commit
2c6531b2 leaf some questions open.
In that sense, this patch is only a hotfix not a assessment.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'tests/unit/test_webapp.py')
-rw-r--r-- | tests/unit/test_webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py index f31332fa0..f15e3c92c 100644 --- a/tests/unit/test_webapp.py +++ b/tests/unit/test_webapp.py @@ -48,7 +48,7 @@ class ViewsTestCase(SearxTestCase): def search_mock(search_self, *args): search_self.result_container = Mock(get_ordered_results=lambda: test_results, - answers=set(), + answers=dict(), corrections=set(), suggestions=set(), infoboxes=[], |