diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-09-04 07:17:19 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-04 07:17:19 +0000 |
| commit | ab4456b0d0f3e495f627311e576df03694e673ad (patch) | |
| tree | a5732720882550ac321bd051f45ed080dae9083d /tests/unit/test_webapp.py | |
| parent | 16c19389a5aaf9cabae9d464537d5c848c96577e (diff) | |
| parent | a14ea6396e8e55b056065e6f0ce2032067e11385 (diff) | |
Merge pull request #281 from dalf/cleanup
Cleanup
Diffstat (limited to 'tests/unit/test_webapp.py')
| -rw-r--r-- | tests/unit/test_webapp.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py index 8598113f7..c5ec1ca97 100644 --- a/tests/unit/test_webapp.py +++ b/tests/unit/test_webapp.py @@ -3,9 +3,10 @@ import json from urllib.parse import ParseResult from mock import Mock -from searx.testing import SearxTestCase -from searx.search import Search + import searx.search.processors +from searx.search import Search +from tests import SearxTestCase class ViewsTestCase(SearxTestCase): |