We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c03622 commit 3aacabbCopy full SHA for 3aacabb
extract_wheels/lib/namespace_pkgs_test.py
@@ -133,8 +133,7 @@ def test_empty_case(self):
133
134
class TestaddPkgutilStyleNamespacePkgInit(unittest.TestCase):
135
def test_missing_directory_is_created(self):
136
- directory = TempDir()
137
- missing_directory = pathlib.Path(directory.root()) / "missing_directory"
+ missing_directory = pathlib.Path(TempDir().root(), "missing_directory")
138
namespace_pkgs.add_pkgutil_style_namespace_pkg_init(str(missing_directory))
139
self.assertTrue(missing_directory.is_dir())
140
0 commit comments