Merge branch 'sg/t5551-fetch-smart-error-is-translated' into maint
authorJunio C Hamano <gitster@pobox.com>
Mon, 29 Jul 2019 19:38:13 +0000 (12:38 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 29 Jul 2019 19:38:13 +0000 (12:38 -0700)
Test update.

* sg/t5551-fetch-smart-error-is-translated:
t5551: use 'test_i18ngrep' to check translated output

1  2 
t/t5551-http-fetch-smart.sh
index aed2d9bb05202de6a3299e7e5bc17a852146a971,cb11f13d6dd72a0101850d8fbaedc6f722bb8377..e38e54386795a0e05003e803dc79301ed1cd52d9
@@@ -199,7 -199,7 +199,7 @@@ test_expect_success 'GIT_SMART_HTTP ca
  
  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' '
@@@ -301,10 -301,11 +301,10 @@@ test_expect_success CMDLINE_LIMIT 
        )
  '
  
 -test_expect_success 'large fetch-pack requests can be split across POSTs' '
 +test_expect_success 'large fetch-pack requests can be sent using chunked encoding' '
        GIT_TRACE_CURL=true git -c http.postbuffer=65536 \
                clone --bare "$HTTPD_URL/smart/repo.git" split.git 2>err &&
 -      grep "^=> Send header: POST" err >posts &&
 -      test_line_count = 2 posts
 +      grep "^=> Send header: Transfer-Encoding: chunked" err
  '
  
  test_expect_success 'test allowreachablesha1inwant' '
@@@ -465,7 -466,7 +465,7 @@@ test_expect_success 'GIT_TRACE_CURL_NO_
  
  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