diff options
Diffstat (limited to 'setuptools')
| -rw-r--r-- | setuptools/tests/test_wheel.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/tests/test_wheel.py b/setuptools/tests/test_wheel.py index c83abb62..293e8262 100644 --- a/setuptools/tests/test_wheel.py +++ b/setuptools/tests/test_wheel.py @@ -695,6 +695,7 @@ def test_wheel_mode(): install_tree, project_name, version, None) w = Wheel(filename) - script_sh = pathlib.Path(install_dir) / w.egg_name() / "EGG-INFO" / "scripts" / "script.sh" + base = pathlib.Path(install_dir) / w.egg_name() + script_sh = base / "EGG-INFO" / "scripts" / "script.sh" assert script_sh.exists() assert oct(stat.S_IMODE(script_sh.stat().st_mode)) == "0o777" |
