diff options
-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 } |