summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_posixpath.py
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-04-27 01:44:28 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-04-27 01:44:28 (GMT)
commit7195963aa2b25030ef4662e6879ad27517e63fcc (patch)
tree7e4afe7f95e9f29995900790297d9ee41ca7f8be /Lib/test/test_posixpath.py
parent5afb5c6630540f2b4fb314a9a7c5ea9692e0b0c0 (diff)
downloadcpython-7195963aa2b25030ef4662e6879ad27517e63fcc.zip
cpython-7195963aa2b25030ef4662e6879ad27517e63fcc.tar.gz
cpython-7195963aa2b25030ef4662e6879ad27517e63fcc.tar.bz2
test_support was renamed to support on py3k.
Diffstat (limited to 'Lib/test/test_posixpath.py')
-rw-r--r--Lib/test/test_posixpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py
index 17be3d2..a37be25 100644
--- a/Lib/test/test_posixpath.py
+++ b/Lib/test/test_posixpath.py
@@ -419,7 +419,7 @@ class PosixPathTest(unittest.TestCase):
self.assert_(isinstance(posixpath.expanduser(b"~root/"), bytes))
self.assert_(isinstance(posixpath.expanduser(b"~foo/"), bytes))
- with test_support.EnvironmentVarGuard() as env:
+ with support.EnvironmentVarGuard() as env:
env.set('HOME', '/')
self.assertEqual(posixpath.expanduser("~"), "/")