summaryrefslogtreecommitdiff
path: root/t/t8003-blame-corner-cases.sh
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2020-07-29 23:14:08 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-07-30 16:16:47 (GMT)
commit7187eb1e6a81b6b8539c1487285ba50621d2a4d3 (patch)
treecd454b9fab98535aec0271e30c892e3297dc9f5a /t/t8003-blame-corner-cases.sh
parent98de0b27bf1f3475aaf3a3e6244741831d0b6489 (diff)
downloadgit-7187eb1e6a81b6b8539c1487285ba50621d2a4d3.zip
git-7187eb1e6a81b6b8539c1487285ba50621d2a4d3.tar.gz
git-7187eb1e6a81b6b8539c1487285ba50621d2a4d3.tar.bz2
t8003: make hash size independent
One assertion in this test invokes git with core.abbrev set to "40". Since we're expecting the full hash length, use test_oid to look up the full hash length for the hash in use. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Reviewed-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t8003-blame-corner-cases.sh')
-rwxr-xr-xt/t8003-blame-corner-cases.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/t/t8003-blame-corner-cases.sh b/t/t8003-blame-corner-cases.sh
index 9130b88..b871dd4 100755
--- a/t/t8003-blame-corner-cases.sh
+++ b/t/t8003-blame-corner-cases.sh
@@ -6,7 +6,6 @@ test_description='git blame corner cases'
pick_fc='s/^[0-9a-f^]* *\([^ ]*\) *(\([^ ]*\) .*/\1-\2/'
test_expect_success setup '
-
echo A A A A A >one &&
echo B B B B B >two &&
echo C C C C C >tres &&
@@ -306,7 +305,7 @@ test_expect_success 'blame coalesce' '
$oid 1) ABC
$oid 2) DEF
EOF
- git -c core.abbrev=40 blame -s giraffe >actual &&
+ git -c core.abbrev=$(test_oid hexsz) blame -s giraffe >actual &&
test_cmp expect actual
'