Skip to content

Commit e1a911e

Browse files
committed
add missing reference
Signed-off-by: Filipe Laíns <[email protected]>
1 parent bb6db97 commit e1a911e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_importlib/test_reader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def test_init_error(self):
105105
NamespaceReader(['path1', 'path2'])
106106

107107
def test_resource_path(self):
108-
namespacedata = import_module('namespacedata01')
108+
namespacedata = import_module('namespacedata')
109109
reader = NamespaceReader(namespacedata.__spec__.submodule_search_locations)
110110

111111
root = os.path.abspath(os.path.join(__file__, '..', 'namespacedata'))
@@ -117,7 +117,7 @@ def test_resource_path(self):
117117
)
118118

119119
def test_files(self):
120-
namespacedata = import_module('namespacedata01')
120+
namespacedata = import_module('namespacedata')
121121
reader = NamespaceReader(namespacedata.__spec__.submodule_search_locations)
122122
root = os.path.abspath(os.path.join(__file__, '..', 'namespacedata'))
123123
self.assertIsInstance(reader.files(), MultiplexedPath)

0 commit comments

Comments
 (0)