Unit test fix from Giampaolo Rodola, #1938

This commit is contained in:
Christian Heimes 2008-01-26 16:43:35 +00:00
parent 6caad7d2cb
commit a2af21262a
1 changed files with 1 additions and 0 deletions

View File

@ -316,6 +316,7 @@ class TestsWithSourceFile(unittest.TestCase):
correctfile = os.path.join(os.getcwd(), fpath[1:])
else:
correctfile = os.path.join(os.getcwd(), fpath)
correctfile = os.path.normpath(correctfile)
self.assertEqual(writtenfile, correctfile)