1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Fixed a test that was broken by releasing 1.3. D'oh.

This commit is contained in:
Jannis Leidel 2013-03-07 23:06:24 +01:00
parent b5a15705ac
commit f0b6bbf953

View file

@ -62,7 +62,7 @@ def test_search():
"""
reset_env()
output = run_pip('search', 'pip')
assert 'pip installs packages' in output.stdout
assert 'A tool for installing and managing Python packages' in output.stdout
def test_multiple_search():
@ -72,7 +72,7 @@ def test_multiple_search():
"""
reset_env()
output = run_pip('search', 'pip', 'INITools')
assert 'pip installs packages' in output.stdout
assert 'A tool for installing and managing Python packages' in output.stdout
assert 'Tools for parsing and using INI-style files' in output.stdout