Merge pull request #2608 from return42/unittest2

[py2to3] use unittest from py3, remove unittest2 from py2
This commit is contained in:
Alexandre Flament 2021-03-01 10:05:38 +01:00 committed by GitHub
commit e2fb500892
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -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: