summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2013-03-07 23:06:24 +0100
committerJannis Leidel <jannis@leidel.info>2013-03-07 23:14:18 +0100
commitf0b6bbf953f1c0cb9042dbf956590a6c74175ca2 (patch)
treec8053fdb7fc722552b18edcb331446972186703b
parentb5a15705ac161a0004b7193e7fb8961265bb51a4 (diff)
downloadpip-f0b6bbf953f1c0cb9042dbf956590a6c74175ca2.tar.gz
Fixed a test that was broken by releasing 1.3. D'oh.
-rw-r--r--tests/test_search.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_search.py b/tests/test_search.py
index eb090f80d..25668e545 100644
--- a/tests/test_search.py
+++ b/tests/test_search.py
@@ -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