summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorElia Pinto <gitter.spiros@gmail.com>2016-09-05 10:24:41 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-09-07 18:41:39 (GMT)
commit4eee6c6ddc73a3d09e8703a168fe4bb121162d15 (patch)
treec6a4b05ff185ed474edb8d0d370b0d30cfd528dd /t
parent6ebdac1bab966b720d776aa43ca188fe378b1f4b (diff)
downloadgit-4eee6c6ddc73a3d09e8703a168fe4bb121162d15.zip
git-4eee6c6ddc73a3d09e8703a168fe4bb121162d15.tar.gz
git-4eee6c6ddc73a3d09e8703a168fe4bb121162d15.tar.bz2
t5541-http-push-smart.sh: use the GIT_TRACE_CURL environment var
Use the new GIT_TRACE_CURL environment variable instead of the deprecated GIT_CURL_VERBOSE. Signed-off-by: Elia Pinto <gitter.spiros@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t5541-http-push-smart.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5541-http-push-smart.sh b/t/t5541-http-push-smart.sh
index 4840c71..d38bf32 100755
--- a/t/t5541-http-push-smart.sh
+++ b/t/t5541-http-push-smart.sh
@@ -74,7 +74,7 @@ test_expect_success 'push to remote repository (standard)' '
test_tick &&
git commit -m path2 &&
HEAD=$(git rev-parse --verify HEAD) &&
- GIT_CURL_VERBOSE=1 git push -v -v 2>err &&
+ GIT_TRACE_CURL=true git push -v -v 2>err &&
! grep "Expect: 100-continue" err &&
grep "POST git-receive-pack ([0-9]* bytes)" err &&
(cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git &&