From: Alban Gruin Date: Fri, 31 Jul 2020 18:26:07 +0000 (+0200) Subject: t6300: fix issues related to %(contents:size) X-Git-Tag: v2.29.0-rc0~196^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3db796c1c0d59e1857e6f16af2bb0be020b6fa7a;p=thirdparty%2Fgit.git t6300: fix issues related to %(contents:size) b6839fda68 (ref-filter: add support for %(contents:size), 2020-07-16) added a new format for ref-filter, and added a function to generate tests for this new feature in t6300. Unfortunately, it tries to run `test_expect_sucess' instead of `test_expect_success', and writes $expect to `expected', but tries to read `expect'. Those two issues were probably unnoticed because the script only printed errors, but did not crash. This fixes these issues. Signed-off-by: Alban Gruin Reviewed-by: Jeff King Signed-off-by: Junio C Hamano --- 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 }