changeset 71:20ffb6486412

tests: put some characters in HGRCPATH so Windows actually sees the variable
author Idan Kamara <idankk86@gmail.com>
date Mon, 26 Sep 2011 22:25:36 +0300
parents bdc1650f216c
children 15485fa4b35e
files tests/__init__.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tests/__init__.py	Fri Sep 09 23:05:57 2011 +0300
+++ b/tests/__init__.py	Mon Sep 26 22:25:36 2011 +0300
@@ -16,7 +16,7 @@
     os.environ["HGENCODINGMODE"] = "strict"
     tmpdir = tempfile.mkdtemp('', 'python-hglib.')
     os.environ["HGTMP"] = os.path.realpath(tmpdir)
-    os.environ["HGRCPATH"] = ""
+    os.environ["HGRCPATH"] = os.pathsep
 
 def tearDown(self):
     os.chdir('..')