From: Junio C Hamano Date: Tue, 5 Feb 2013 00:21:42 +0000 (-0800) Subject: t5551: fix expected error output X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=af3aec4469f91dcd34d60706a1addfedbb84ece5;p=git.git t5551: fix expected error output We should probably get rid of the check of message instead, but in the meantime this should do. Signed-off-by: Junio C Hamano --- diff --git a/t/t5551-http-fetch.sh b/t/t5551-http-fetch.sh index cb95b953b..47eb76921 100755 --- a/t/t5551-http-fetch.sh +++ b/t/t5551-http-fetch.sh @@ -158,9 +158,8 @@ test_expect_success 'GIT_SMART_HTTP can disable smart http' ' ' test_expect_success 'invalid Content-Type rejected' ' - echo "fatal: invalid content-type text/html" >expect test_must_fail git clone $HTTPD_URL/broken_smart/repo.git 2>actual - test_cmp expect actual + grep "not valid:" actual ' test -n "$GIT_TEST_LONG" && test_set_prereq EXPENSIVE