diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2021-02-28 11:25:20 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-02-28 11:37:06 +0100 |
| commit | 3bae35940a41da97c93e34193549eb73b01141ef (patch) | |
| tree | 8919a9b7cb1d3fcbe218abb39bc6651d26d294ad /searx/testing.py | |
| parent | b05f4d066429ddc3cd1fe9f09648183b3649efba (diff) | |
[py2to3] use unittest from py3, remove unittest2 from py2
- unittest2 is a backport of the new features added to the unittest testing
framework in Python 2.7
- unittest2 was only needed in py2 and can be dropped now
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/testing.py')
| -rw-r--r-- | searx/testing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/testing.py b/searx/testing.py index c52974961..ec253cb3d 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 -from unittest2 import TestCase class SearxTestLayer: |