Mercurial > public > mercurial-scm > hg-stable
diff tests/printenv.py @ 12642:bb35840e965c
tests: remove the last traces of $HGTMP
$HGTMP isn't needed - and if we need something like that then $TESTTMP is more
appropriate.
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Fri, 08 Oct 2010 22:36:11 -0500 |
parents | 08a0f04b56bd |
children | 31a256ffe9e5 |
line wrap: on
line diff
--- a/tests/printenv.py Fri Oct 08 22:36:10 2010 -0500 +++ b/tests/printenv.py Fri Oct 08 22:36:11 2010 -0500 @@ -48,8 +48,7 @@ out.write("%s hook: " % name) for v in env: - out.write("%s=%s " % - (v, os.environ[v].replace(os.environ["HGTMP"], '$HGTMP'))) + out.write("%s=%s " % (v, os.environ[v])) out.write("\n") out.close()