diff options
author | Alexandre Flament <alex@al-f.net> | 2021-09-02 16:01:34 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2021-09-02 16:01:34 +0200 |
commit | b9c73fb69784726608d1a2d72b7a17f777d30b9d (patch) | |
tree | e1446c28afb7c49328ae7f9279b11c072c5b52c6 /tests/unit/network | |
parent | 065b4dab56bf3c374cab7896314168e9d3106171 (diff) | |
download | searxng-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/network')
-rw-r--r-- | tests/unit/network/test_network.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/network/test_network.py b/tests/unit/network/test_network.py index e8d33240a..0805edc19 100644 --- a/tests/unit/network/test_network.py +++ b/tests/unit/network/test_network.py @@ -5,7 +5,7 @@ from mock import patch import httpx from searx.network.network import Network, NETWORKS, initialize -from searx.testing import SearxTestCase +from tests import SearxTestCase class TestNetwork(SearxTestCase): |