summaryrefslogtreecommitdiff
path: root/Lib/test/test_importlib/resources/util.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-07-24 20:53:10 -0400
committerGitHub <noreply@github.com>2022-07-24 20:53:10 -0400
commit3e718cf880e8994d76f6296a502497c16a956644 (patch)
tree4eeeeae42bdb6138b08c5f20711a8b426db606da /Lib/test/test_importlib/resources/util.py
parent9007dec606b790c05e158e588b696f3c210c2795 (diff)
downloadcpython-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.py4
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