diff tests/test-rebase-abort @ 8168:8766fee6f225

tests: removed redundant "-u test" from test scripts The tests are executed with a .hgrc file which adds "-u test" by default.
author Martin Geisler <mg@lazybytes.net>
date Sun, 26 Apr 2009 14:49:49 +0200
parents 93609576244e
children b345b1cc124f
line wrap: on
line diff
--- a/tests/test-rebase-abort	Sun Apr 26 14:29:02 2009 +0200
+++ b/tests/test-rebase-abort	Sun Apr 26 14:49:49 2009 +0200
@@ -14,22 +14,22 @@
 cd a
 echo 'c1' >common
 hg add common
-hg commit -d '0 0' -u test -m "C1"
+hg commit -d '0 0' -m "C1"
 
 echo 'c2' >>common
-hg commit -d '1 0' -u test -m "C2"
+hg commit -d '1 0' -m "C2"
 
 echo 'c3' >>common
-hg commit -d '2 0' -u test -m "C3"
+hg commit -d '2 0' -m "C3"
 
 hg update -C 1
 echo 'l1' >>extra
 hg add extra
-hg commit -d '3 0' -u test -m "L1"
+hg commit -d '3 0' -m "L1"
 
 sed -e 's/c2/l2/' common > common.new
 mv common.new common
-hg commit -d '4 0' -u test -m "L2"
+hg commit -d '4 0' -m "L2"
 
 hg glog  --template '{rev}: {desc}\n'