(path1, path2)
| 2328 | |
| 2329 | |
| 2330 | def _path_equals(path1, path2): |
| 2331 | path1 = pydevd_file_utils.normcase(path1) |
| 2332 | path2 = pydevd_file_utils.normcase(path2) |
| 2333 | return path1 == path2 |
| 2334 | |
| 2335 | |
| 2336 | @pytest.mark.parametrize("mixed_case", [True, False] if sys.platform == "win32" else [False]) |