t6044: replace seq by test_seq

seq is not available everywhere.

Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Johannes Sixt 2016-05-18 07:51:39 +02:00 committed by Junio C Hamano
parent a6ee883b8e
commit 3f215b0328

View file

@ -20,7 +20,7 @@ test_description="merges with unrelated index changes"
# Commit E: renames a->subdir/a, adds subdir/e
test_expect_success 'setup trivial merges' '
seq 1 10 >a &&
test_seq 1 10 >a &&
git add a &&
test_tick && git commit -m A &&
@ -42,7 +42,7 @@ test_expect_success 'setup trivial merges' '
test_tick && git commit -m C &&
git checkout D &&
seq 2 10 >a &&
test_seq 2 10 >a &&
echo d >d &&
git add a d &&
test_tick && git commit -m D &&