diff options
| author | Deniz Taneli <7292227+dtaneli@users.noreply.github.com> | 2018-11-10 20:00:45 +0000 |
|---|---|---|
| committer | Deniz Taneli <7292227+dtaneli@users.noreply.github.com> | 2018-11-10 20:00:45 +0000 |
| commit | 28872fc9e7d15a1acf3bc557795c76c5e64dbad3 (patch) | |
| tree | b9a7b2a7dea4fadd014c20c5d3696db69ce42da7 /setuptools/tests/test_egg_info.py | |
| parent | 1047052e341d69c799e26ff889359e101c5e0499 (diff) | |
| download | python-setuptools-git-28872fc9e7d15a1acf3bc557795c76c5e64dbad3.tar.gz | |
Remove unnecessary parameters from the test
Diffstat (limited to 'setuptools/tests/test_egg_info.py')
| -rw-r--r-- | setuptools/tests/test_egg_info.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/setuptools/tests/test_egg_info.py b/setuptools/tests/test_egg_info.py index 04a17308..7c862e61 100644 --- a/setuptools/tests/test_egg_info.py +++ b/setuptools/tests/test_egg_info.py @@ -519,14 +519,10 @@ class TestEggInfo: self, tmpdir_cwd, env, files, license_in_sources): self._create_project() build_files(files) - environ = os.environ.copy().update( - HOME=env.paths['home'], - ) + environment.run_setup_py( cmd=['egg_info'], - pypath=os.pathsep.join([env.paths['lib'], str(tmpdir_cwd)]), - data_stream=1, - env=environ, + pypath=os.pathsep.join([env.paths['lib'], str(tmpdir_cwd)]) ) egg_info_dir = os.path.join('.', 'foo.egg-info') |
