[Python-checkins] cpython: Fix a cleanup.

brett.cannon python-checkins at python.org
Fri Apr 20 23:35:04 CEST 2012


http://hg.python.org/cpython/rev/a8484e56811b
changeset:   76444:a8484e56811b
user:        Brett Cannon <brett at python.org>
date:        Fri Apr 20 17:34:59 2012 -0400
summary:
  Fix a cleanup.

files:
  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
--- a/Lib/test/test_import.py
+++ b/Lib/test/test_import.py
@@ -456,7 +456,7 @@
 
     # 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.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list