Drop use of unittest2

unittest2 was needed for Python <= 2.6 and hasn't been needed for quite
awhile now. See unittest2 note at:

https://docs.python.org/2.7/library/unittest.html

This cleans up use to just use the standard unittest package.

Change-Id: I54c6ada7c4ad7147bf7f8547e249eb6998a05145
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
This commit is contained in:
Sean McGinnis 2020-01-12 02:18:24 -06:00
parent f74f393218
commit dd2c0fca02
No known key found for this signature in database
GPG Key ID: CE7EE4BFAF8D70C8
1 changed files with 1 additions and 4 deletions

View File

@ -15,10 +15,7 @@
# limitations under the License.
try:
import unittest2 as unittest
except ImportError:
import unittest
import unittest
from ddt import data, ddt, unpack