# HG changeset patch # User Pierre-Yves David # Date 1507278489 -7200 # Node ID e162597b375a86e78e6303edc179ef7a1628c021 # Parent a05b6580f71c08849de9106eb67034f1833d209f test: remove bashism in test-topic-change.t The test was broken on various machine using shell not supporting the `{start..end}` construct. diff -r a05b6580f71c -r e162597b375a tests/test-topic-change.t --- a/tests/test-topic-change.t Thu Oct 05 19:35:58 2017 +0530 +++ b/tests/test-topic-change.t Fri Oct 06 10:28:09 2017 +0200 @@ -20,7 +20,7 @@ $ hg init topics $ cd topics - $ for ch in {a..h}; do touch $ch; echo "foo" >> $ch; hg ci -Aqm "Added "$ch; done + $ for ch in a b c d e f g h; do touch $ch; echo "foo" >> $ch; hg ci -Aqm "Added "$ch; done $ hg glog @ 7:ec2426147f0e {}