diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2022-07-24 20:53:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-24 20:53:10 -0400 |
commit | 3e718cf880e8994d76f6296a502497c16a956644 (patch) | |
tree | 4eeeeae42bdb6138b08c5f20711a8b426db606da /Lib/test/test_importlib/resources/util.py | |
parent | 9007dec606b790c05e158e588b696f3c210c2795 (diff) | |
download | cpython-git-3e718cf880e8994d76f6296a502497c16a956644.tar.gz |
gh-95218: Move tests for importlib.resources into test_importlib.resources. (#95219)
* gh-95218: Move tests for importlib.resources into test_importlib.resources.
* Also update makefile
* Include test_importlib/resources in code ownership rule.
Diffstat (limited to 'Lib/test/test_importlib/resources/util.py')
-rw-r--r-- | Lib/test/test_importlib/resources/util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_importlib/resources/util.py b/Lib/test/test_importlib/resources/util.py index 11c8aa8080..f80c9cd01d 100644 --- a/Lib/test/test_importlib/resources/util.py +++ b/Lib/test/test_importlib/resources/util.py @@ -5,8 +5,8 @@ import sys import types from pathlib import Path, PurePath -from .. import data01 -from .. import zipdata01 +from . import data01 +from . import zipdata01 from importlib.abc import ResourceReader from test.support import import_helper |