(self, path1, path2)
| 1094 | |
| 1095 | # Tests that the given two paths are identical, modulo path delimiters. E.g. "C:/foo" is equal to "C:\foo". |
| 1096 | def assertPathsIdentical(self, path1, path2): |
| 1097 | path1 = utils.normalize_path(path1) |
| 1098 | path2 = utils.normalize_path(path2) |
| 1099 | return self.assertIdentical(path1, path2) |
| 1100 | |
| 1101 | # Tests that the given two multiline text content are identical, modulo line |
| 1102 | # ending differences (\r\n on Windows, \n on Unix). |