mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
not expecting errors in these tests. let them pass errors.
This commit is contained in:
parent
693408423c
commit
1d1363b0fc
1 changed files with 2 additions and 2 deletions
|
@ -14,9 +14,9 @@ def test_simple_uninstall():
|
|||
|
||||
"""
|
||||
env = reset_env()
|
||||
result = run_pip('install', 'INITools==0.2', expect_error=True)
|
||||
result = run_pip('install', 'INITools==0.2')
|
||||
assert join(env.site_packages, 'initools') in result.files_created, sorted(result.files_created.keys())
|
||||
result2 = run_pip('uninstall', 'INITools', '-y', expect_error=True)
|
||||
result2 = run_pip('uninstall', 'INITools', '-y')
|
||||
assert_all_changes(result, result2, [env.venv/'build', 'cache'])
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue