diff options
author | Christian Couder <christian.couder@gmail.com> | 2019-03-31 15:46:56 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-04-01 10:49:00 +0200 |
commit | 502d87b9e3ee6faadae45d545e0e257ef8948f0b (patch) | |
tree | 0ec103fbc622f43843360380a7d6e13732403a36 /t/t6050-replace.sh | |
parent | mingw: allow building with an MSYS2 runtime v3.x (diff) | |
download | git-502d87b9e3ee6faadae45d545e0e257ef8948f0b.tar.xz git-502d87b9e3ee6faadae45d545e0e257ef8948f0b.zip |
t6050: use test_line_count instead of wc -l
This modernizes a test and makes it more portable.
Reviewed-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t6050-replace.sh')
-rwxr-xr-x | t/t6050-replace.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/t/t6050-replace.sh b/t/t6050-replace.sh index d638119750..41b177936e 100755 --- a/t/t6050-replace.sh +++ b/t/t6050-replace.sh @@ -393,9 +393,11 @@ test_expect_success 'replace ref cleanup' ' ' test_expect_success '--graft with and without already replaced object' ' - test $(git log --oneline | wc -l) = 7 && + git log --oneline >log && + test_line_count = 7 log && git replace --graft $HASH5 && - test $(git log --oneline | wc -l) = 3 && + git log --oneline >log && + test_line_count = 3 log && commit_has_parents $HASH5 && test_must_fail git replace --graft $HASH5 $HASH4 $HASH3 && git replace --force -g $HASH5 $HASH4 $HASH3 && |