summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2019-07-09 15:25:46 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2019-07-09 15:25:46 -0700
commit2fff5094426c783ddedb79de588eb85647baa8f0 (patch)
tree6a1e059a9060b4ec8fdf14653674eba9698048c3
parentMerge branch 'ms/submodule-foreach-fix' (diff)
parentt5551: use 'test_i18ngrep' to check translated output (diff)
downloadtgif-2fff5094426c783ddedb79de588eb85647baa8f0.tar.xz
Merge branch 'sg/t5551-fetch-smart-error-is-translated'
Test update. * sg/t5551-fetch-smart-error-is-translated: t5551: use 'test_i18ngrep' to check translated output
-rwxr-xr-xt/t5551-http-fetch-smart.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t5551-http-fetch-smart.sh b/t/t5551-http-fetch-smart.sh
index ac74626a7b..cb11f13d6d 100755
--- a/t/t5551-http-fetch-smart.sh
+++ b/t/t5551-http-fetch-smart.sh
@@ -199,7 +199,7 @@ test_expect_success 'GIT_SMART_HTTP can disable smart http' '
test_expect_success 'invalid Content-Type rejected' '
test_must_fail git clone $HTTPD_URL/broken_smart/repo.git 2>actual &&
- grep "not valid:" actual
+ test_i18ngrep "not valid:" actual
'
test_expect_success 'create namespaced refs' '
@@ -466,7 +466,7 @@ test_expect_success 'GIT_TRACE_CURL_NO_DATA prevents data from being traced' '
test_expect_success 'server-side error detected' '
test_must_fail git clone $HTTPD_URL/error_smart/repo.git 2>actual &&
- grep "server-side error" actual
+ test_i18ngrep "server-side error" actual
'
test_done