Skip to content

Commit 1d1363b

Browse files
committed
not expecting errors in these tests. let them pass errors.
1 parent 6934084 commit 1d1363b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_uninstall.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def test_simple_uninstall():
1414
1515
"""
1616
env = reset_env()
17-
result = run_pip('install', 'INITools==0.2', expect_error=True)
17+
result = run_pip('install', 'INITools==0.2')
1818
assert join(env.site_packages, 'initools') in result.files_created, sorted(result.files_created.keys())
19-
result2 = run_pip('uninstall', 'INITools', '-y', expect_error=True)
19+
result2 = run_pip('uninstall', 'INITools', '-y')
2020
assert_all_changes(result, result2, [env.venv/'build', 'cache'])
2121

2222

0 commit comments

Comments
 (0)