diff options
author | Johannes Sixt <j6t@kdbg.org> | 2016-05-18 07:51:39 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-05-18 08:48:06 -0700 |
commit | 3f215b03289ff594f3e4aba7c7a4b774dc4c226e (patch) | |
tree | db2918d71eff03b712712b3c41aff0a95070df5a | |
parent | a6ee883b8eb56d200c3297184d29ea488a34cf43 (diff) | |
download | git-js/t6044-use-test-seq.tar.gz |
t6044: replace seq by test_seqjs/t6044-use-test-seq
seq is not available everywhere.
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t6044-merge-unrelated-index-changes.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t6044-merge-unrelated-index-changes.sh b/t/t6044-merge-unrelated-index-changes.sh index eed5d95c13..782a1954ee 100755 --- a/t/t6044-merge-unrelated-index-changes.sh +++ b/t/t6044-merge-unrelated-index-changes.sh @@ -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 && |