mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
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:
parent
c60dd5b0d4
commit
b3d6afff2b
9 changed files with 16 additions and 16 deletions
|
|
@ -13,7 +13,7 @@ import unittest
|
|||
import warnings
|
||||
|
||||
|
||||
class FinderTests(abc.FinderTests):
|
||||
class FinderTests(unittest.TestCase, abc.FinderTests):
|
||||
|
||||
"""For a top-level module, it should just be found directly in the
|
||||
directory being searched. This is true for a directory with source
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue