summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib/test_path.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-01-23 02:38:26 (GMT)
committerGitHub <noreply@github.com>2022-01-23 02:38:26 (GMT)
commitd888ff5381594641126065e78dc9210dae4436a4 (patch)
treee113f1ed59bfc905fd078ef92efbac7532929d38 /Lib/test/test_importlib/test_path.py
parent353e3b2820bed38da16140276786eef9ba33d3bd (diff)
downloadcpython-d888ff5381594641126065e78dc9210dae4436a4.zip
cpython-d888ff5381594641126065e78dc9210dae4436a4.tar.gz
cpython-d888ff5381594641126065e78dc9210dae4436a4.tar.bz2
bpo-46425: Partially revert "bpo-46425: fix direct invocation of `test_importlib` (GH-30682)" (GH-30799)
This reverts commit 57316c52bae5d6420f5067f3891ec328deb97305 for files pertaining to importlib.metadata and importlib.resources.
Diffstat (limited to 'Lib/test/test_importlib/test_path.py')
-rw-r--r--Lib/test/test_importlib/test_path.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_importlib/test_path.py b/Lib/test/test_importlib/test_path.py
index 66dc0b2..6fc41f3 100644
--- a/Lib/test/test_importlib/test_path.py
+++ b/Lib/test/test_importlib/test_path.py
@@ -2,8 +2,8 @@ import io
import unittest
from importlib import resources
-from test.test_importlib import data01
-from test.test_importlib.resources import util
+from . import data01
+from .resources import util
class CommonTests(util.CommonTests, unittest.TestCase):