Skip to content

Commit d3b2c16

Browse files
Copilotdscho
andcommitted
Add test to verify http.version=HTTP/1.1 is set for ADO URLs
Co-authored-by: dscho <[email protected]>
1 parent ebec25e commit d3b2c16

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

t/t9210-scalar.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,11 @@ test_expect_success '`scalar clone` with GVFS-enabled server' '
385385
echo "$(pwd)/.scalarCache/$cache_key" >expect &&
386386
git -C using-gvfs/src config gvfs.sharedCache >actual &&
387387
test_cmp expect actual &&
388+
389+
: verify that HTTP/1.1 is configured for ADO URLs &&
390+
git -C using-gvfs/src config http.version >actual &&
391+
echo "HTTP/1.1" >expect &&
392+
test_cmp expect actual &&
388393
389394
second=$(git rev-parse --verify second:second.t) &&
390395
(

0 commit comments

Comments
 (0)