Fixed #6053 - win32 fixes for distutils tests

This commit is contained in:
Tarek Ziadé 2009-05-18 12:21:26 +00:00
parent 6deb574be3
commit 07bbfcc5e2
3 changed files with 9 additions and 3 deletions

View file

@ -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():