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 | |
| parent | dc3c6fb56557bfa4a4f5ed5abca25f119ded6cde (diff) | |
| parent | 3db796c1c0d59e1857e6f16af2bb0be020b6fa7a (diff) | |
| download | git-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)
| -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 } |
