mirror of
https://github.com/git/git
synced 2024-11-04 16:17:49 +00:00
Merge branch 'jk/t5500-typofix'
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:
commit
b8d1a1b06c
1 changed files with 1 additions and 1 deletions
|
@ -1046,7 +1046,7 @@ fetch_filter_blob_limit_zero () {
|
|||
|
||||
# Ensure that commit is fetched, but blob is not
|
||||
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 &&
|
||||
grep "$commit" oids &&
|
||||
! grep "$blob" oids
|
||||
|
|
Loading…
Reference in a new issue