# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 2017-12-02 01:02:41 # Node ID 900ed9853017c5f56665f6c900f16e8514e77c92 # Parent 779c6cf2967b0808215bb8db72f191ca165dcf34 tests: removes bashism from test-unamend.t FreeBSD builders fail because of bashism. Differential Revision: https://phab.mercurial-scm.org/D1578 diff --git a/tests/test-unamend.t b/tests/test-unamend.t --- a/tests/test-unamend.t +++ b/tests/test-unamend.t @@ -16,7 +16,7 @@ Repo Setup $ hg init repo $ cd repo - $ 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 Added h