mirror of
https://github.com/python/cpython.git
synced 2025-09-20 07:31:10 +00:00
Fixed #6053 - win32 fixes for distutils tests
This commit is contained in:
parent
6deb574be3
commit
07bbfcc5e2
3 changed files with 9 additions and 3 deletions
|
@ -88,7 +88,7 @@ class DirUtilTestCase(support.TempdirManager, unittest.TestCase):
|
|||
self.assertEquals(ensure_relative('/home/foo'), 'home/foo')
|
||||
self.assertEquals(ensure_relative('some/path'), 'some/path')
|
||||
else: # \\
|
||||
self.assertEquals(ensure_relative('c:\\home\\foo'), 'home\\foo')
|
||||
self.assertEquals(ensure_relative('c:\\home\\foo'), 'c:home\\foo')
|
||||
self.assertEquals(ensure_relative('home\\foo'), 'home\\foo')
|
||||
|
||||
def test_suite():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue