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
commitb2c646684986070b34b92aef52d2f57391c99626 (patch)
tree432765137783e7687442af048000a7f4f1d2620f
parent3b68368e30aa51d4a7f96053501c604a8cb6fe42 (diff)
downloadpython-setuptools-git-b2c646684986070b34b92aef52d2f57391c99626.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