Skip to content

Commit 77a6c4c

Browse files
committed
Merge branch 'jk/t5500-typofix' into maint-2.45
A helper function shared between two tests had a copy-paste bug, which has been corrected. * jk/t5500-typofix: t5500: fix mistaken $SERVER reference in helper function
2 parents c061c1d + 40d8178 commit 77a6c4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t5500-fetch-pack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1046,7 +1046,7 @@ fetch_filter_blob_limit_zero () {
10461046

10471047
# Ensure that commit is fetched, but blob is not
10481048
commit=$(git -C "$SERVER" rev-parse two) &&
1049-
blob=$(git hash-object server/two.t) &&
1049+
blob=$(git hash-object "$SERVER/two.t") &&
10501050
git -C client rev-list --objects --missing=allow-any "$commit" >oids &&
10511051
grep "$commit" oids &&
10521052
! grep "$blob" oids

0 commit comments

Comments
 (0)