again some platform fixes

This commit is contained in:
Roland Praml
2022-02-03 13:46:14 +01:00
parent 575deb0f5a
commit fca9591d0c
20 changed files with 7 additions and 6 deletions
@@ -18,7 +18,7 @@ import static org.assertj.core.api.Assertions.assertThat;
public class DbMigrationTest extends BaseTestCase {
private void runScript(String scriptName) throws IOException {
URL url = getClass().getResource("/migrationtest/dbmigration/" + server().platform().base().name().toLowerCase() + "/" + scriptName);
URL url = getClass().getResource("/migrationtest/dbmigration/" + server().platform().name().toLowerCase() + "/" + scriptName);
assert url != null : scriptName + " not found";
server().script().run(url);
}