fixed tests

This commit is contained in:
anhefti 2021-09-27 10:48:58 +02:00
parent 33c915bd92
commit 92207cf2c3

View file

@ -87,7 +87,7 @@ public final class ConfigurationNode implements GrantEntity {
this.templateId = (templateId != null) ? templateId : DEFAULT_TEMPLATE_ID;
this.name = name;
this.description = description;
this.type = type;
this.type = (type != null) ? type : ConfigurationType.EXAM_CONFIG;
this.owner = owner;
this.status = status;
}