Issue #16803: Stop having test.test_importlib.abc ABCs inherit from

unittest.TestCase in prep of running tests under frozen and source
importlib.
This commit is contained in:
Brett Cannon 2013-10-25 12:33:59 -04:00
parent c60dd5b0d4
commit b3d6afff2b
9 changed files with 16 additions and 16 deletions

View file

@ -9,7 +9,7 @@ import types
import unittest
class LoaderTests(abc.LoaderTests):
class LoaderTests(unittest.TestCase, abc.LoaderTests):
"""Test load_module() for built-in modules."""