summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2010-07-23 14:45:19 (GMT)
committerBrett Cannon <bcannon@gmail.com>2010-07-23 14:45:19 (GMT)
commit42e54b29b9efc9b7f829e9f3a9d05d78ca1074cd (patch)
treed37dcc7aae1370c53ec8a914882c73772df9eb9f
parent1f27479e26f212b0f2b1f75f17b4ce6f7849ce5b (diff)
downloadcpython-42e54b29b9efc9b7f829e9f3a9d05d78ca1074cd.zip
cpython-42e54b29b9efc9b7f829e9f3a9d05d78ca1074cd.tar.gz
cpython-42e54b29b9efc9b7f829e9f3a9d05d78ca1074cd.tar.bz2
Stop shadowing a test class.
-rw-r--r--Lib/test/test_import.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py
index be82b22..447c17f 100644
--- a/Lib/test/test_import.py
+++ b/Lib/test/test_import.py
@@ -635,7 +635,7 @@ class PycacheTests(unittest.TestCase):
os.path.join(os.curdir, foo_pyc))
-class RelativeImportTests(test_relative_imports.RelativeImports):
+class RelativeImportFromImportlibTests(test_relative_imports.RelativeImports):
def setUp(self):
self._importlib_util_flag = importlib_util.using___import__
@@ -649,7 +649,7 @@ def test_main(verbose=None):
run_unittest(ImportTests, PycacheTests,
PycRewritingTests, PathsTests, RelativeImportTests,
OverridingImportBuiltinTests,
- RelativeImportTests)
+ RelativeImportFromImportlibTests)
if __name__ == '__main__':