Skip to content

Commit 3f215b0

Browse files
j6tgitster
authored andcommitted
t6044: replace seq by test_seq
seq is not available everywhere. Signed-off-by: Johannes Sixt <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a6ee883 commit 3f215b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

t/t6044-merge-unrelated-index-changes.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ test_description="merges with unrelated index changes"
2020
# Commit E: renames a->subdir/a, adds subdir/e
2121

2222
test_expect_success 'setup trivial merges' '
23-
seq 1 10 >a &&
23+
test_seq 1 10 >a &&
2424
git add a &&
2525
test_tick && git commit -m A &&
2626
@@ -42,7 +42,7 @@ test_expect_success 'setup trivial merges' '
4242
test_tick && git commit -m C &&
4343
4444
git checkout D &&
45-
seq 2 10 >a &&
45+
test_seq 2 10 >a &&
4646
echo d >d &&
4747
git add a d &&
4848
test_tick && git commit -m D &&

0 commit comments

Comments
 (0)