File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -138,15 +138,15 @@ test_expect_success 'blame --abbrev -b truncates the blank boundary' '
138138 # Note that `--abbrev=` always gets incremented by 1, which is why we
139139 # expect 11 leading spaces and not 10.
140140 cat >expect <<-EOF &&
141- $(printf "%0.s " $(test_seq 11) ) (<author@example.com> 2005-04-07 15:45:13 -0700 1) abbrev
141+ $(printf "%11s" "" ) (<author@example.com> 2005-04-07 15:45:13 -0700 1) abbrev
142142 EOF
143143 git blame -b --abbrev=10 ^HEAD -- abbrev.t >actual &&
144144 test_cmp expect actual
145145'
146146
147147test_expect_success ' blame with excessive --abbrev and -b culls to hash length' '
148148 cat >expect <<-EOF &&
149- $(printf "%0.s " $(test_seq $hexsz) ) (<author@example.com> 2005-04-07 15:45:13 -0700 1) abbrev
149+ $(printf "%${hexsz}s" "" ) (<author@example.com> 2005-04-07 15:45:13 -0700 1) abbrev
150150 EOF
151151 git blame -b --abbrev=9000 ^HEAD -- abbrev.t >actual &&
152152 test_cmp expect actual
You can’t perform that action at this time.
0 commit comments