|
@@ -841,7 +841,9 @@ class FileSystemBackendTests(TestCase):
|
|
|
|
|
|
def test_absolute(self):
|
|
|
repo = self.backend.open_repository(self.path)
|
|
|
- self.assertEqual(os.path.abspath(repo.path), os.path.abspath(self.repo.path))
|
|
|
+ self.assertEqual(
|
|
|
+ os.path.normcase(os.path.abspath(repo.path)),
|
|
|
+ os.path.normcase(os.path.abspath(self.repo.path)))
|
|
|
|
|
|
def test_child(self):
|
|
|
self.assertRaises(NotGitRepository,
|