aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-03-24 10:54:21 +0000
committerJason R. Coombs <jaraco@jaraco.com>2014-03-24 10:54:21 +0000
commit342c210603c74e4de0fc56d210c962ef9acc2cca (patch)
treeb63027815c59a85f063944e6e1e0063cc9281c02
parent8173752ef1a4dc9e3b6039638821dbe71f216642 (diff)
downloadexternal_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.
-rw-r--r--tests/test_ez_setup.py2
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):