Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-02-05 04:21:42 +0400
committerJunio C Hamano <gitster@pobox.com>2013-02-05 04:21:42 +0400
commitaf3aec4469f91dcd34d60706a1addfedbb84ece5 (patch)
tree932d7a941875a821072ee99e8539bf6519aa4fca /t
parent4656bf47fca857df51b5d6f4b7b052192b3b2317 (diff)
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 <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t5551-http-fetch.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/t/t5551-http-fetch.sh b/t/t5551-http-fetch.sh
index cb95b953b7..47eb76921d 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