Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix coverage tests on windows (#16245)
[test_windows_full failed](https://github.com/lampepfl/dotty/actions/runs/3313981586/jobs/5472673283) Coverage tests replaced all `\` by `/`, but the paths are now escaped, which turns `C:\folder\file` into `C:\\folder\\file`. Thus we need to replace `\\` by `/`! Note: this fix is better than removing `.escaped` from paths, because paths are allowed to contains problematic characters such as newlines, which would break the coverage report.
- Loading branch information