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>
Johannes Sixt committed
May 18, 2016 at 07:51 UTC
3f215b03289ff594f3e4aba7c7a4b774dc4c226e
1 file changed
+2
-2
t/t6044-merge-unrelated-index-changes.sh
+2
-2
@@ -20,7 +20,7 @@ test_description="merges with unrelated index changes"
20
# Commit E: renames a->subdir/a, adds subdir/e
21
22
test_expect_success 'setup trivial merges' '
23
- seq 1 10 >a &&
23
+ test_seq 1 10 >a &&
24
git add a &&
25
test_tick && git commit -m A &&
26
@@ -42,7 +42,7 @@ test_expect_success 'setup trivial merges' '
42
test_tick && git commit -m C &&
43
44
git checkout D &&
45
- seq 2 10 >a &&
45
+ test_seq 2 10 >a &&
46
echo d >d &&
47
git add a d &&
48
test_tick && git commit -m D &&