Skip to content

Commit 634f3ce

Browse files
committed
SQUASH??? test-lint -- seq not portable
1 parent 82e68b4 commit 634f3ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

t/t8014-blame-ignore-fuzzy.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ EOF
298298
last_test=13
299299

300300
test_expect_success setup '
301-
{ for i in $(seq 2 $last_test)
301+
{ for i in $(test_seq 2 $last_test)
302302
do
303303
# Append each line in a separate commit to make it easy to
304304
# check which original line the blame output relates to.
@@ -314,7 +314,7 @@ test_expect_success setup '
314314
done } <"a$i"
315315
done } &&
316316
317-
{ for i in $(seq 2 $last_test)
317+
{ for i in $(test_seq 2 $last_test)
318318
do
319319
# Overwrite the files with the final content.
320320
cp b$i $i &&
@@ -329,7 +329,7 @@ test_expect_success setup '
329329
IGNOREME=$(git rev-parse HEAD)
330330
'
331331

332-
for i in $(seq 2 $last_test); do
332+
for i in $(test_seq 2 $last_test); do
333333
eval title="\$title$i"
334334
test_expect_success "$title" \
335335
"git blame -M9 --ignore-rev $IGNOREME $i | sed -e \"$pick_author\" >actual && test_cmp expected$i actual"

0 commit comments

Comments
 (0)