# HG changeset patch
# User Dmitrij D. Czarkoff <czarkoff@gmail.com>
# Date 1452774815 -3600
# Node ID bcf3d04d6585aa12a3a64bd2411a653fb3f7e2b3
# Parent  296349f421c81ba054ff2d8c5d6ee84407905f47
test-renames.t: don't use "seq"

Seq is not a standard utility, and explicit loop should be more performant.

diff --git a/tests/test-renames.t b/tests/test-renames.t
--- a/tests/test-renames.t
+++ b/tests/test-renames.t
@@ -10,7 +10,7 @@
 
   $ git init -q gitrepo
   $ cd gitrepo
-  $ for i in $(seq 1 10); do echo $i >> alpha; done
+  $ for i in 1 2 3 4 5 6 7 8 9 10; do echo $i >> alpha; done
   $ git add alpha
   $ fn_git_commit -malpha