diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-24 10:54:21 +0000 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-24 10:54:21 +0000 |
commit | 342c210603c74e4de0fc56d210c962ef9acc2cca (patch) | |
tree | b63027815c59a85f063944e6e1e0063cc9281c02 /tests/test_ez_setup.py | |
parent | 8173752ef1a4dc9e3b6039638821dbe71f216642 (diff) | |
download | external_python_setuptools-342c210603c74e4de0fc56d210c962ef9acc2cca.tar.gz external_python_setuptools-342c210603c74e4de0fc56d210c962ef9acc2cca.tar.bz2 external_python_setuptools-342c210603c74e4de0fc56d210c962ef9acc2cca.zip |
Update test_install to actually patch the hidden _python_cmd.
Diffstat (limited to 'tests/test_ez_setup.py')
-rw-r--r-- | tests/test_ez_setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_ez_setup.py b/tests/test_ez_setup.py index 5e7ffa62..e6283306 100644 --- a/tests/test_ez_setup.py +++ b/tests/test_ez_setup.py @@ -37,7 +37,7 @@ class TestSetup(unittest.TestCase): def test_install(self): def _faked(*args): return True - ez_setup.python_cmd = _faked + ez_setup._python_cmd = _faked _install(self.zipball) def test_use_setuptools(self): |