diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-04 17:14:11 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-04 17:14:11 -0500 |
| commit | 261d57232c74954468688a76aab2caea80ed42fc (patch) | |
| tree | 164a48eabac4b97dd2d90eab6ceb1faca420c959 /setuptools/tests/test_easy_install.py | |
| parent | c3beddd034239005c98f7285a2936c513c5a81be (diff) | |
| download | python-setuptools-git-261d57232c74954468688a76aab2caea80ed42fc.tar.gz | |
Rename _gen_args to get_args (for consistency).
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 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 |
