Fix tests on windows

This commit is contained in:
Moritz Halbritter 2024-03-07 14:14:24 +01:00
parent 793aca60d2
commit 7a417503e5
1 changed files with 1 additions and 0 deletions

View File

@ -141,6 +141,7 @@ abstract class AbstractTests {
return stream.map((file) -> file.toAbsolutePath().toString())
.map((file) -> (file.length() >= substring) ? file.substring(substring) : "")
.filter(StringUtils::hasLength)
.map((file) -> file.replace(File.separatorChar, '/'))
.toList();
}
}