diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-04-02 22:38:52 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-04-02 22:38:52 (GMT) |
commit | 48953cd33572c4ed73c96bebd468153513843659 (patch) | |
tree | f32b7434fb07e375571d2f00f4915a1ba2d817d9 /Lib/distutils | |
parent | 71fb7ca2820a66633caf5c3f64d1d514c9f76153 (diff) | |
download | cpython-48953cd33572c4ed73c96bebd468153513843659.zip cpython-48953cd33572c4ed73c96bebd468153513843659.tar.gz cpython-48953cd33572c4ed73c96bebd468153513843659.tar.bz2 |
Change test_support to support. Fixes a failing test on Windows.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/tests/test_build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_build_ext.py b/Lib/distutils/tests/test_build_ext.py index aca2be2..e41a824 100644 --- a/Lib/distutils/tests/test_build_ext.py +++ b/Lib/distutils/tests/test_build_ext.py @@ -52,7 +52,7 @@ class BuildExtTestCase(TempdirManager, LoggingSilencer, unittest.TestCase): def tearDown(self): # Get everything back to normal if os.path.exists(_XX_MODULE_PATH): - test_support.unload('xx') + support.unload('xx') sys.path[:] = self.sys_path # XXX on Windows the test leaves a directory # with xx module in TEMP |