test_support was renamed to support on py3k.

This commit is contained in:
Hirokazu Yamamoto 2009-04-27 01:44:28 +00:00
parent 5afb5c6630
commit 7195963aa2
3 changed files with 4 additions and 4 deletions

View file

@ -149,7 +149,7 @@ class test__candidate_tempdir_list(TC):
# _candidate_tempdir_list contains the expected directories
# Make sure the interesting environment variables are all set.
with test_support.EnvironmentVarGuard() as env:
with support.EnvironmentVarGuard() as env:
for envname in 'TMPDIR', 'TEMP', 'TMP':
dirname = os.getenv(envname)
if not dirname: