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
This commit is contained in:
@ -1046,7 +1046,7 @@ fetch_filter_blob_limit_zero () {
|
|||||||
|
|
||||||
# Ensure that commit is fetched, but blob is not
|
# Ensure that commit is fetched, but blob is not
|
||||||
commit=$(git -C "$SERVER" rev-parse two) &&
|
commit=$(git -C "$SERVER" rev-parse two) &&
|
||||||
blob=$(git hash-object server/two.t) &&
|
blob=$(git hash-object "$SERVER/two.t") &&
|
||||||
git -C client rev-list --objects --missing=allow-any "$commit" >oids &&
|
git -C client rev-list --objects --missing=allow-any "$commit" >oids &&
|
||||||
grep "$commit" oids &&
|
grep "$commit" oids &&
|
||||||
! grep "$blob" oids
|
! grep "$blob" oids
|
||||||
|
Reference in New Issue
Block a user