diff options
author | Brett Cannon <brett@python.org> | 2012-04-20 21:34:59 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-04-20 21:34:59 (GMT) |
commit | 9e924ed1ac516107a91745ca6210b66388f15468 (patch) | |
tree | a03094dbe7cc143cdff25103f65ebda2bc14c516 /Lib/test/test_import.py | |
parent | 5d5296d36e7be54141f06e79c4ab90a1ccde8544 (diff) | |
download | cpython-9e924ed1ac516107a91745ca6210b66388f15468.zip cpython-9e924ed1ac516107a91745ca6210b66388f15468.tar.gz cpython-9e924ed1ac516107a91745ca6210b66388f15468.tar.bz2 |
Fix a cleanup.
Diffstat (limited to 'Lib/test/test_import.py')
-rw-r--r-- | Lib/test/test_import.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index 1b57432..ea66293 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -456,7 +456,7 @@ class PathsTests(unittest.TestCase): # Regression test for http://bugs.python.org/issue3677. @unittest.skipUnless(sys.platform == 'win32', 'Windows-specific') - def _test_UNC_path(self): + def test_UNC_path(self): with open(os.path.join(self.path, 'test_trailing_slash.py'), 'w') as f: f.write("testdata = 'test_trailing_slash'") # Create the UNC path, like \\myhost\c$\foo\bar. |