From 5128fb971563e4a482b91b99f67ac89009bd4a0d Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Sun, 11 May 2008 20:08:33 +0000 Subject: [PATCH] Try setting HOME env.var to fix test on Win32 --- Lib/distutils/tests/test_dist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/tests/test_dist.py b/Lib/distutils/tests/test_dist.py index 05342af829..8f1288e9f6 100644 --- a/Lib/distutils/tests/test_dist.py +++ b/Lib/distutils/tests/test_dist.py @@ -213,7 +213,7 @@ class MetadataTestCase(unittest.TestCase): # win32-style if sys.platform == 'win32': # home drive should be found - os.environ['HOMEPATH'] = curdir + os.environ['HOME'] = curdir files = dist.find_config_files() self.assert_(user_filename in files, '%r not found in %r' % (user_filename, files)) -- 2.50.1