t5550: fix typo in $HTTPD_URL
Commit 14111fc (git: submodule honor -c credential.* from command line, 2016-02-29) accidentally wrote $HTTP_URL. It happened to work because we ended up with "credential..helper", which we treat the same as "credential.helper", applying it to all URLs. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Jeff King committed
Apr 28, 2016 at 09:36 UTC
1149ee214e6b9e2450f817a808f74e4e761e7295
1 file changed
+1
-1
t/t5550-http-fetch-dumb.sh
+1
-1
@@ -103,7 +103,7 @@ test_expect_success 'cmdline credential config passes into submodules' '
103
test_must_fail git clone --recursive super super-clone &&
104
rm -rf super-clone &&
105
set_askpass wrong pass@host &&
106
- git -c "credential.$HTTP_URL.username=user@host" \
106
+ git -c "credential.$HTTPD_URL.username=user@host" \
107
clone --recursive super super-clone &&
108
expect_askpass pass user@host
109
'