diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-03-01 10:05:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-01 10:05:38 +0100 |
| commit | e2fb50089219207f7e11bcfc049b48f2f4b9a6c8 (patch) | |
| tree | 0447133b62df2c556dd7e4a495c7ea241d70e8bc /searx/testing.py | |
| parent | 0c663e25fc7f60521614e777ff65a97aaa53d0f1 (diff) | |
| parent | 3bae35940a41da97c93e34193549eb73b01141ef (diff) | |
Merge pull request #2608 from return42/unittest2
[py2to3] use unittest from py3, remove unittest2 from py2
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: |