aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-04 17:14:11 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-04 17:14:11 -0500
commit261d57232c74954468688a76aab2caea80ed42fc (patch)
tree164a48eabac4b97dd2d90eab6ceb1faca420c959 /setuptools/tests
parentc3beddd034239005c98f7285a2936c513c5a81be (diff)
downloadexternal_python_setuptools-261d57232c74954468688a76aab2caea80ed42fc.tar.gz
external_python_setuptools-261d57232c74954468688a76aab2caea80ed42fc.tar.bz2
external_python_setuptools-261d57232c74954468688a76aab2caea80ed42fc.zip
Rename _gen_args to get_args (for consistency).
Diffstat (limited to 'setuptools/tests')
-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 5d1068ea..f919ae20 100644
--- a/setuptools/tests/test_easy_install.py
+++ b/setuptools/tests/test_easy_install.py
@@ -83,7 +83,7 @@ class TestEasyInstallTest:
def test_get_script_args(self):
dist = FakeDist()
- args = next(ScriptWriter._gen_args(dist))
+ args = next(ScriptWriter.get_args(dist))
name, script = itertools.islice(args, 2)
assert script == WANTED