diff tests/test-push-warn @ 9609:aa404f3f661b

tests: fix inadvertent use of existing test repository
author Henrik Stuart <hg@hstuart.dk>
date Sat, 17 Oct 2009 15:40:34 +0200
parents f3569d95c2ab
children d6a307719ccb
line wrap: on
line diff
--- a/tests/test-push-warn	Mon Oct 19 07:14:44 2009 +0200
+++ b/tests/test-push-warn	Sat Oct 17 15:40:34 2009 +0200
@@ -125,19 +125,19 @@
 
 echo % checking prepush logic does not allow silently pushing multiple new heads
 cd ..
-hg init g
-echo init > g/init
-hg -R g ci -Am init
-echo a > g/a
-hg -R g ci -Am a
-hg clone g h
-hg -R g up 0
-echo b > g/b
-hg -R g ci -Am b
+hg init h
+echo init > h/init
+hg -R h ci -Am init
+echo a > h/a
+hg -R h ci -Am a
+hg clone h i
 hg -R h up 0
-echo c > h/c
-hg -R h ci -Am c
-hg -R h push g
+echo b > h/b
+hg -R h ci -Am b
+hg -R i up 0
+echo c > i/c
+hg -R i ci -Am c
+hg -R i push h
 echo
 
 exit 0