diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-02 11:14:16 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-02 11:14:16 -0500 |
commit | 9ed373760301e531de21009f26700e55177265e1 (patch) | |
tree | 0cb31a4acd12945d891917989f7ab48f70587439 | |
parent | 637da2c7c72edcc5582a4892ae7e18d76910fdf5 (diff) | |
download | external_python_setuptools-9ed373760301e531de21009f26700e55177265e1.tar.gz external_python_setuptools-9ed373760301e531de21009f26700e55177265e1.tar.bz2 external_python_setuptools-9ed373760301e531de21009f26700e55177265e1.zip |
Remove additional references to unittest.
-rw-r--r-- | setuptools/tests/test_packageindex.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/setuptools/tests/test_packageindex.py b/setuptools/tests/test_packageindex.py index 098d4e3f..3e9d1d84 100644 --- a/setuptools/tests/test_packageindex.py +++ b/setuptools/tests/test_packageindex.py @@ -1,6 +1,4 @@ import sys -import os -import unittest import distutils.errors from setuptools.compat import httplib, HTTPError, unicode, pathname2url @@ -174,7 +172,7 @@ class TestPackageIndex: assert 'content' in res.read() -class TestContentCheckers(unittest.TestCase): +class TestContentCheckers: def test_md5(self): checker = setuptools.package_index.HashChecker.from_url( |