From 75af79703ad84b5da00b2b15683601e2be14fad2 Mon Sep 17 00:00:00 2001 From: Paul Nasrat Date: Sat, 19 May 2012 14:52:49 -0700 Subject: [PATCH] PR ci testing - add assertion messages --- tests/test_vcs_backends.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_vcs_backends.py b/tests/test_vcs_backends.py index e59fc7ada05..87d5d98c1bd 100644 --- a/tests/test_vcs_backends.py +++ b/tests/test_vcs_backends.py @@ -139,6 +139,6 @@ def test_git_works_with_editable_non_origin_repo(): # 'freeze'ing this should not fall over, but should result in stderr output warning result = run_pip('freeze', expect_stderr=True) - assert "Error when trying to get requirement" in result.stderr - assert "Could not determine repository location" in result.stdout - assert "version-pkg==0.1" in result.stdout + assert "Error when trying to get requirement" in result.stderr, result.stderr + assert "Could not determine repository location" in result.stdout, result.stdout + assert "version-pkg==0.1" in result.stdout, result.stdout