From 9c599fab9f16b64353bc3ed82baa05ececc6043c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 1 Sep 2017 14:11:13 -0400 Subject: [PATCH] simplify Signed-off-by: Kenneth Reitz --- tests/test_pipenv.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/test_pipenv.py b/tests/test_pipenv.py index b757aa51..cdaa8133 100644 --- a/tests/test_pipenv.py +++ b/tests/test_pipenv.py @@ -74,8 +74,7 @@ class TestPipenv(): os.environ['PIPENV_MAX_DEPTH'] = '1' with open('requirements.txt', 'w') as f: - f.write('maya==0.3.2\n' - 'requests[socks]==2.18.1\n' + f.write('requests[socks]==2.18.1\n' 'git+https://github.com/kennethreitz/records.git@v0.5.0#egg=records\n' '-e git+https://github.com/kennethreitz/tablib.git@v0.11.5#egg=tablib\n' 'six==1.10.0\n') @@ -86,10 +85,6 @@ class TestPipenv(): pipfile_output = delegator.run('cat Pipfile').out lockfile_output = delegator.run('cat Pipfile.lock').out - # Ensure packages dependencies work. - assert 'maya' in pipfile_output - assert 'maya' in lockfile_output - # Ensure extras work. assert 'extras = [ "socks",]' in pipfile_output assert 'pysocks' in lockfile_output