summaryrefslogtreecommitdiff
path: root/tests/unit/engines
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-09-02 16:01:34 +0200
committerAlexandre Flament <alex@al-f.net>2021-09-02 16:01:34 +0200
commitb9c73fb69784726608d1a2d72b7a17f777d30b9d (patch)
treee1446c28afb7c49328ae7f9279b11c072c5b52c6 /tests/unit/engines
parent065b4dab56bf3c374cab7896314168e9d3106171 (diff)
downloadsearxng-b9c73fb69784726608d1a2d72b7a17f777d30b9d.tar.gz
searxng-b9c73fb69784726608d1a2d72b7a17f777d30b9d.zip
[mod] move searx/testing.py to the tests directory
move robot tests to tests.robot manage calls "python -m tests.robot"
Diffstat (limited to 'tests/unit/engines')
-rw-r--r--tests/unit/engines/test_command.py2
-rw-r--r--tests/unit/engines/test_xpath.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/engines/test_command.py b/tests/unit/engines/test_command.py
index 8f88b617e..d2bb123f7 100644
--- a/tests/unit/engines/test_command.py
+++ b/tests/unit/engines/test_command.py
@@ -16,7 +16,7 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >.
from searx.engines import command as command_engine
-from searx.testing import SearxTestCase
+from tests import SearxTestCase
class TestCommandEngine(SearxTestCase):
diff --git a/tests/unit/engines/test_xpath.py b/tests/unit/engines/test_xpath.py
index 963a44a25..287beeab4 100644
--- a/tests/unit/engines/test_xpath.py
+++ b/tests/unit/engines/test_xpath.py
@@ -2,7 +2,7 @@
from collections import defaultdict
import mock
from searx.engines import xpath
-from searx.testing import SearxTestCase
+from tests import SearxTestCase
class TestXpathEngine(SearxTestCase):