diff tests/test-push-warn @ 1933:7544700fd931

Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero. Some systems show "Thu Jan 01" instead of "Thu Jan 1", which breaks tests. Using "1000000" yields "Mon Jan 12 13:46:40 1970", which looks the same on all systems.
author Thomas Arendsen Hein <thomas@intevation.de>
date Mon, 13 Mar 2006 13:05:41 +0100
parents 9c918287d10b
children fc22ed56afe3
line wrap: on
line diff
--- a/tests/test-push-warn	Mon Mar 13 12:22:55 2006 +0100
+++ b/tests/test-push-warn	Mon Mar 13 13:05:41 2006 +0100
@@ -5,7 +5,7 @@
 hg init
 echo foo > t1
 hg add t1
-hg commit -m "1" -d "0 0"
+hg commit -m "1" -d "1000000 0"
 
 cd ..
 hg clone a b
@@ -13,16 +13,16 @@
 cd a
 echo foo > t2
 hg add t2
-hg commit -m "2" -d "0 0"
+hg commit -m "2" -d "1000000 0"
 
 cd ../b
 echo foo > t3
 hg add t3
-hg commit -m "3" -d "0 0"
+hg commit -m "3" -d "1000000 0"
 
 hg push ../a
 hg pull ../a
 hg push ../a
 hg up -m
-hg commit -m "4" -d "0 0"
+hg commit -m "4" -d "1000000 0"
 hg push ../a