summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-04 22:45:56 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-04 22:45:56 -0500
commit33688382d4c3daf8490c86d14cc7a6818d49f7e4 (patch)
treef8f0d374195967b4aa086fc9f54c33214b0e4fc6
parent5411a60e7e785ec1ffbce358f8dedfc061f0f24e (diff)
downloadpython-setuptools-bitbucket-33688382d4c3daf8490c86d14cc7a6818d49f7e4.tar.gz
Fix failing test (now that expectation is different).
-rw-r--r--setuptools/tests/test_easy_install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py
index a3d5b0a9..72b040e1 100644
--- a/setuptools/tests/test_easy_install.py
+++ b/setuptools/tests/test_easy_install.py
@@ -438,7 +438,7 @@ class TestScriptHeader:
assert actual == expected
actual = ScriptWriter.get_script_header('#!/usr/bin/python',
- executable=self.exe_with_spaces)
+ executable='"'+self.exe_with_spaces+'"')
expected = '#!"%s"\n' % self.exe_with_spaces
assert actual == expected