diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-01-30 00:22:35 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-01-30 00:22:35 (GMT) |
commit | f254a75176928e1d1228a5d20d49fbe2fe9f290a (patch) | |
tree | 7ec25bc4398a7258f0eb7810ffbad1b0ba8c3bd3 /Lib/importlib/test/source | |
parent | b18b936e797379b13a15604a76bbb9e1e0bcf5fe (diff) | |
download | cpython-f254a75176928e1d1228a5d20d49fbe2fe9f290a.zip cpython-f254a75176928e1d1228a5d20d49fbe2fe9f290a.tar.gz cpython-f254a75176928e1d1228a5d20d49fbe2fe9f290a.tar.bz2 |
Merge testing ABCs for importlib into importlib.test.abc.
Diffstat (limited to 'Lib/importlib/test/source')
-rw-r--r-- | Lib/importlib/test/source/test_finder.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/importlib/test/source/test_finder.py b/Lib/importlib/test/source/test_finder.py index cf80799..63cb436 100644 --- a/Lib/importlib/test/source/test_finder.py +++ b/Lib/importlib/test/source/test_finder.py @@ -1,5 +1,5 @@ import importlib -from .. import finder_tests +from .. import abc from .. import support import os import py_compile @@ -7,7 +7,7 @@ import unittest import warnings -class FinderTests(finder_tests.FinderTests): +class FinderTests(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 |