Skip to content

Commit 62c2b9f

Browse files
committed
Remove reference in test_windows_wrappers to easy_install.
1 parent aeea792 commit 62c2b9f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setuptools/tests/test_windows_wrappers.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,14 @@
2121
import pytest
2222

2323
import pkg_resources
24-
from setuptools.command.easy_install import nt_quote_arg
2524

2625
pytestmark = pytest.mark.skipif(sys.platform != 'win32', reason="Windows only")
2726

2827

2928
class WrapperTester:
3029
@classmethod
3130
def prep_script(cls, template):
32-
python_exe = nt_quote_arg(sys.executable)
31+
python_exe = subprocess.list2cmdline([sys.executable])
3332
return template % locals()
3433

3534
@classmethod

0 commit comments

Comments
 (0)