diff --git a/tests/test_pathu.py b/tests/test_pathu.py index abedbbf..c83264e 100644 --- a/tests/test_pathu.py +++ b/tests/test_pathu.py @@ -387,8 +387,8 @@ def test_get_module_path(self, paths, module, expec_path): id="import file : local", ), pytest.param( - "distutils", - Path("distutils/__init__.py"), + "asyncio", + Path("asyncio/__init__.py"), id="import module : standard", ), pytest.param( @@ -453,9 +453,9 @@ def test_get_import_path(self, module: str, expec_path: Path): ), pytest.param( "*", - "distutils", + "asyncio", 0, - Path("distutils/__init__.py"), + Path("asyncio/__init__.py"), id="from package import * : standard", ), pytest.param(