[Fix] Fixed broken tests

This commit is contained in:
Robert von Burg 2023-07-28 15:37:47 +02:00
parent 9ae36d6026
commit d3ca30f7f7
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
2 changed files with 4 additions and 1 deletions

View File

@ -42,7 +42,7 @@ public abstract class AbstractionConfiguration {
public AbstractionConfiguration(String name, Map<String, String> configurationValues) {
this.name = name;
this.configurationValues = new HashMap<>(configurationValues);
this.configurationValues = configurationValues == null ? new HashMap<>() : new HashMap<>(configurationValues);
this.defaultValues = new HashMap<>();
this.valueTypes = new HashMap<>();
}

View File

@ -3,6 +3,9 @@
<env id="global">
<Runtime>
<applicationName>StrolchRuntimeTest</applicationName>
<Properties>
<verbose>true</verbose>
</Properties>
</Runtime>
<Component>
<name>PersistenceHandler</name>