diff tests/test-fetch.t @ 12643:d08bb64888bc

tests: reintroduce ":$HGPORT" in test output This reduces the number of patterns that must be adjusted when writing tests.
author Mads Kiilerich <mads@kiilerich.com>
date Fri, 08 Oct 2010 22:36:11 -0500
parents 975ec4ce961c
children b885f28fa4fa
line wrap: on
line diff
--- a/tests/test-fetch.t	Fri Oct 08 22:36:11 2010 -0500
+++ b/tests/test-fetch.t	Fri Oct 08 22:36:11 2010 -0500
@@ -72,7 +72,7 @@
 fetch over http, no auth
 
   $ hg --cwd d fetch -d '5 0' http://localhost:$HGPORT/
-  pulling from http://localhost:*/ (glob)
+  pulling from http://localhost:$HGPORT/
   searching for changes
   adding changesets
   adding manifests
@@ -84,12 +84,12 @@
   1 files updated, 0 files merged, 0 files removed, 0 files unresolved
   new changeset 3:* merges remote changes with local (glob)
   $ hg --cwd d tip --template '{desc}\n'
-  Automated merge with http://localhost:*/ (glob)
+  Automated merge with http://localhost:$HGPORT/
 
 fetch over http with auth (should be hidden in desc)
 
   $ hg --cwd e fetch -d '5 0' http://user:password@localhost:$HGPORT/
-  pulling from http://user:***@localhost:*/ (glob)
+  pulling from http://user:***@localhost:$HGPORT/
   searching for changes
   adding changesets
   adding manifests
@@ -101,7 +101,7 @@
   1 files updated, 0 files merged, 0 files removed, 0 files unresolved
   new changeset 3:* merges remote changes with local (glob)
   $ hg --cwd e tip --template '{desc}\n'
-  Automated merge with http://localhost:*/ (glob)
+  Automated merge with http://localhost:$HGPORT/
   $ hg clone a f
   updating to branch default
   2 files updated, 0 files merged, 0 files removed, 0 files unresolved