summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setuptools/tests/test_windows_wrappers.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/setuptools/tests/test_windows_wrappers.py b/setuptools/tests/test_windows_wrappers.py
index 70e23a40..b6c1e573 100644
--- a/setuptools/tests/test_windows_wrappers.py
+++ b/setuptools/tests/test_windows_wrappers.py
@@ -89,8 +89,14 @@ class TestCLI(WrapperTester):
by preceding each of them with back slashes.
"""
self.create_script(tmpdir)
- cmd = [str(tmpdir / 'foo.exe'), 'arg1', 'arg 2',
- 'arg "2\\"', 'arg 4\\', 'arg5 a\\\\b']
+ cmd = [
+ str(tmpdir / 'foo.exe'),
+ 'arg1',
+ 'arg 2',
+ 'arg "2\\"',
+ 'arg 4\\',
+ 'arg5 a\\\\b',
+ ]
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stdin=subprocess.PIPE)
stdout, stderr = proc.communicate('hello\nworld\n'.encode('ascii'))
actual = stdout.decode('ascii').replace('\r\n', '\n')