From: Brett Cannon Date: Fri, 23 Jul 2010 14:45:19 +0000 (+0000) Subject: Stop shadowing a test class. X-Git-Tag: v3.2a1~134 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=42e54b29b9efc9b7f829e9f3a9d05d78ca1074cd;p=python Stop shadowing a test class. --- diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index be82b2223b..447c17fb61 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__':