diff options
author | Junio C Hamano <gitster@pobox.com> | 2023-02-16 02:11:53 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-02-16 02:11:53 +0100 |
commit | 063ec7b3b8ab5c13bb37f20e42ecdcc01614aea5 (patch) | |
tree | c652577e52306b4214dccd9fa8623de1ce8b4ca3 | |
parent | Merge branch 'wl/new-command-doc' (diff) | |
parent | t5000: modernise archive and :(glob) test (diff) | |
download | git-063ec7b3b8ab5c13bb37f20e42ecdcc01614aea5.tar.xz git-063ec7b3b8ab5c13bb37f20e42ecdcc01614aea5.zip |
Merge branch 'kf/t5000-modernise'
Test clean-up.
* kf/t5000-modernise:
t5000: modernise archive and :(glob) test
-rwxr-xr-x | t/t5000-tar-tree.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh index d473048138..eb3214bc17 100755 --- a/t/t5000-tar-tree.sh +++ b/t/t5000-tar-tree.sh @@ -402,11 +402,11 @@ test_expect_success GZIP 'extract tgz file (external gzip)' ' test_expect_success 'archive and :(glob)' ' git archive -v HEAD -- ":(glob)**/sh" >/dev/null 2>actual && - cat >expect <<EOF && -a/ -a/bin/ -a/bin/sh -EOF + cat >expect <<-\EOF && + a/ + a/bin/ + a/bin/sh + EOF test_cmp expect actual ' |