diff tests/test-bundle @ 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 af062a9fea9b
children 1de6e7e1bb9f
line wrap: on
line diff
--- a/tests/test-bundle	Sun Apr 26 11:49:17 2009 +0200
+++ b/tests/test-bundle	Sun Apr 26 14:29:02 2009 +0200
@@ -117,14 +117,14 @@
 cd orig
 echo foo > foo
 hg add foo
-hg ci -m 'add foo' -d '0 0'
+hg ci -m 'add foo'
 
 hg clone . ../copy
-hg tag -d '0 0' foo
+hg tag foo
 
 cd ../copy
 echo >> foo
-hg ci -m 'change foo' -d '0 0'
+hg ci -m 'change foo'
 hg bundle ../bundle.hg ../orig
 
 cd ../orig