summaryrefslogtreecommitdiff
path: root/tests/test_unicode.py
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2012-09-01 16:19:19 +0200
committerJannis Leidel <jannis@leidel.info>2012-09-01 16:19:19 +0200
commit235e1dea02abd3a89ab53ea8035fd4ee8a37887b (patch)
tree5e7b2c5a853aefed870863bed9da6722100e2420 /tests/test_unicode.py
parent6083597ebebd05d28b57d53c6077bfa7c3b168f8 (diff)
parentb183a327412e83ac24a9c9d28a6bedd94bb69d7b (diff)
downloadpip-threaded-page-getting.tar.gz
Merge branch 'develop' into threaded-page-gettingthreaded-page-getting
Diffstat (limited to 'tests/test_unicode.py')
-rw-r--r--tests/test_unicode.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_unicode.py b/tests/test_unicode.py
index d9196e750..eb926494e 100644
--- a/tests/test_unicode.py
+++ b/tests/test_unicode.py
@@ -20,6 +20,6 @@ def test_install_package_that_emits_unicode():
env = reset_env()
to_install = os.path.abspath(os.path.join(here, 'packages', 'BrokenEmitsUTF8'))
- result = run_pip('install', to_install, expect_error=True)
- assert '__main__.FakeError: this package designed to fail on install' in result.stdout
+ result = run_pip('install', to_install, expect_error=True, expect_temp=True, quiet=True)
+ assert 'FakeError: this package designed to fail on install' in result.stdout
assert 'UnicodeDecodeError' not in result.stdout