diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-04 22:45:56 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-04 22:45:56 -0500 |
| commit | b2c646684986070b34b92aef52d2f57391c99626 (patch) | |
| tree | 432765137783e7687442af048000a7f4f1d2620f /setuptools/tests/test_easy_install.py | |
| parent | 3b68368e30aa51d4a7f96053501c604a8cb6fe42 (diff) | |
| download | python-setuptools-git-b2c646684986070b34b92aef52d2f57391c99626.tar.gz | |
Fix failing test (now that expectation is different).
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
| -rw-r--r-- | setuptools/tests/test_easy_install.py | 2 |
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 |
