瀏覽代碼

Fix FileSystemBackendTests.test_absolute on windows python3.

Gary van der Merwe 10 年之前
父節點
當前提交
8748115c9f
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      dulwich/tests/test_server.py

+ 3 - 1
dulwich/tests/test_server.py

@@ -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,