@@ -252,15 +252,14 @@ test_expect_success 'access using basic auth with wwwauth header empty continuat
252
252
253
253
# Note that leading and trailing whitespace is important to correctly
254
254
# simulate a continuation/folded header.
255
- printf "">$CHALLENGE &&
256
- printf "WWW-Authenticate: FooBar param1=\"value1\"\r\n" >$CHALLENGE &&
257
- printf " \r\n" >>$CHALLENGE &&
258
- printf " param2=\"value2\"\r\n" >>$CHALLENGE &&
259
- printf "WWW-Authenticate: Bearer authorize_uri=\"id.example.com\"\r\n" >>$CHALLENGE &&
260
- printf " p=1\r\n" >>$CHALLENGE &&
261
- printf " \r\n" >>$CHALLENGE &&
262
- printf " q=0\r\n" >>$CHALLENGE &&
263
- printf "WWW-Authenticate: Basic realm=\"example.com\"\r\n" >>$CHALLENGE &&
255
+ printf "WWW-Authenticate: FooBar param1=\"value1\"\r\n" >"$CHALLENGE" &&
256
+ printf " \r\n" >>"$CHALLENGE" &&
257
+ printf " param2=\"value2\"\r\n" >>"$CHALLENGE" &&
258
+ printf "WWW-Authenticate: Bearer authorize_uri=\"id.example.com\"\r\n" >>"$CHALLENGE" &&
259
+ printf " p=1\r\n" >>"$CHALLENGE" &&
260
+ printf " \r\n" >>"$CHALLENGE" &&
261
+ printf " q=0\r\n" >>"$CHALLENGE" &&
262
+ printf "WWW-Authenticate: Basic realm=\"example.com\"\r\n" >>"$CHALLENGE" &&
264
263
265
264
test_config_global credential.helper test-helper &&
266
265
git ls-remote "$HTTPD_URL/custom_auth/repo.git" &&
@@ -298,11 +297,10 @@ test_expect_success 'access using basic auth with wwwauth header mixed line-endi
298
297
299
298
# Note that leading and trailing whitespace is important to correctly
300
299
# simulate a continuation/folded header.
301
- printf "">$CHALLENGE &&
302
- printf "WWW-Authenticate: FooBar param1=\"value1\"\r\n" >$CHALLENGE &&
303
- printf " \r\n" >>$CHALLENGE &&
304
- printf "\tparam2=\"value2\"\r\n" >>$CHALLENGE &&
305
- printf "WWW-Authenticate: Basic realm=\"example.com\"" >>$CHALLENGE &&
300
+ printf "WWW-Authenticate: FooBar param1=\"value1\"\r\n" >"$CHALLENGE" &&
301
+ printf " \r\n" >>"$CHALLENGE" &&
302
+ printf "\tparam2=\"value2\"\r\n" >>"$CHALLENGE" &&
303
+ printf "WWW-Authenticate: Basic realm=\"example.com\"" >>"$CHALLENGE" &&
306
304
307
305
test_config_global credential.helper test-helper &&
308
306
git ls-remote "$HTTPD_URL/custom_auth/repo.git" &&
0 commit comments