diff options
Diffstat (limited to 'searx/testing.py')
-rw-r--r-- | searx/testing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/testing.py b/searx/testing.py index ec253cb3d..51ca92bd0 100644 --- a/searx/testing.py +++ b/searx/testing.py @@ -10,8 +10,8 @@ import traceback from os.path import dirname, join, abspath, realpath -from unittest import TestCase from splinter import Browser +import aiounittest class SearxTestLayer: @@ -82,7 +82,7 @@ def run_robot_tests(tests): test(browser) -class SearxTestCase(TestCase): +class SearxTestCase(aiounittest.AsyncTestCase): """Base test case for non-robot tests.""" layer = SearxTestLayer |