diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-08-01 13:49:14 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-08-01 13:49:14 -0700 |
commit | 4083971673cc5f05f2af257b059c8fbc25c818fb (patch) | |
tree | 39c85f63273fbccd74c6f52d90d91e2df7704ee6 /t | |
parent | Merge branch 'hn/reftable' into master (diff) | |
parent | t6300: fix issues related to %(contents:size) (diff) | |
download | tgif-4083971673cc5f05f2af257b059c8fbc25c818fb.tar.xz |
Merge branch 'cc/pretty-contents-size' into master
Brown-paper-bag fix.
* cc/pretty-contents-size:
t6300: fix issues related to %(contents:size)
Diffstat (limited to 't')
-rwxr-xr-x | t/t6300-for-each-ref.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t6300-for-each-ref.sh b/t/t6300-for-each-ref.sh index ea9bb6dade..a83579fbdf 100755 --- a/t/t6300-for-each-ref.sh +++ b/t/t6300-for-each-ref.sh @@ -66,9 +66,9 @@ test_atom() { esac # Leave $expect unquoted to lose possible leading whitespaces echo $expect >expected - test_expect_${4:-sucess} $PREREQ "basic atom: $1 contents:size" ' + test_expect_${4:-success} $PREREQ "basic atom: $1 contents:size" ' git for-each-ref --format="%(contents:size)" "$ref" >actual && - test_cmp expect actual + test_cmp expected actual ' fi } |