diff tests/test-backout @ 8167:6c82beaaa11a

tests: removed redundant "-d '0 0'" from test scripts The tests are executed with a .hgrc file which adds "-d '0 0'" by default.
author Martin Geisler <mg@lazybytes.net>
date Sun, 26 Apr 2009 14:29:02 +0200
parents 554715e584e6
children
line wrap: on
line diff
--- a/tests/test-backout	Sun Apr 26 11:49:17 2009 +0200
+++ b/tests/test-backout	Sun Apr 26 14:29:02 2009 +0200
@@ -42,16 +42,16 @@
 hg init branch
 cd branch
 echo a > a
-hg ci -Am0 -d '0 0'
+hg ci -Am0
 echo b > b
-hg ci -Am1 -d '0 0'
+hg ci -Am1
 hg co -C 0
 # should fail
-hg backout -d '0 0' 1
+hg backout 1
 echo c > c
-hg ci -Am2 -d '0 0'
+hg ci -Am2
 # should fail
-hg backout -d '0 0' 1
+hg backout 1
 
 echo '# backout with merge'
 cd ..