not expecting errors in these tests. let them pass errors.

This commit is contained in:
Marcus Smith 2012-06-13 21:00:10 -07:00
parent 693408423c
commit 1d1363b0fc
1 changed files with 2 additions and 2 deletions

View File

@ -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'])