Skip to content

Commit a28a5ea

Browse files
Beat Bolligitster
authored andcommitted
t/t8*: avoid redundant use of cat
Signed-off-by: Beat Bolli <[email protected]> Acked-by: Taylor Blau <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 6178c08 commit a28a5ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t8010-cat-file-filters.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ test_expect_success 'cat-file --textconv --path=<path> works' '
4343
sha1=$(git rev-parse -q --verify HEAD:world.txt) &&
4444
test_config diff.txt.textconv "tr A-Za-z N-ZA-Mn-za-m <" &&
4545
git cat-file --textconv --path=hello.txt $sha1 >rot13 &&
46-
test uryyb = "$(cat rot13 | remove_cr)"
46+
test uryyb = "$(remove_cr <rot13)"
4747
'
4848

4949
test_expect_success '--path=<path> complains without --textconv/--filters' '

0 commit comments

Comments
 (0)