Skip to content
Snippets Groups Projects
Commit 6745b429 authored by felmer's avatar felmer
Browse files

LMS-645 broken test fixed

SVN: 9028
parent f3f8e653
No related branches found
No related tags found
No related merge requests found
...@@ -39,6 +39,7 @@ import ch.systemsx.cisd.openbis.generic.server.dataaccess.IEntityPropertyTypeDAO ...@@ -39,6 +39,7 @@ import ch.systemsx.cisd.openbis.generic.server.dataaccess.IEntityPropertyTypeDAO
import ch.systemsx.cisd.openbis.generic.server.dataaccess.IEntityTypeDAO; import ch.systemsx.cisd.openbis.generic.server.dataaccess.IEntityTypeDAO;
import ch.systemsx.cisd.openbis.generic.server.dataaccess.IPropertyTypeDAO; import ch.systemsx.cisd.openbis.generic.server.dataaccess.IPropertyTypeDAO;
import ch.systemsx.cisd.openbis.generic.shared.dto.DataTypePE; import ch.systemsx.cisd.openbis.generic.shared.dto.DataTypePE;
import ch.systemsx.cisd.openbis.generic.shared.dto.DatabaseInstancePE;
import ch.systemsx.cisd.openbis.generic.shared.dto.EntityPropertyPE; import ch.systemsx.cisd.openbis.generic.shared.dto.EntityPropertyPE;
import ch.systemsx.cisd.openbis.generic.shared.dto.EntityType; import ch.systemsx.cisd.openbis.generic.shared.dto.EntityType;
import ch.systemsx.cisd.openbis.generic.shared.dto.EntityTypePropertyTypePE; import ch.systemsx.cisd.openbis.generic.shared.dto.EntityTypePropertyTypePE;
...@@ -262,6 +263,9 @@ public class EntityPropertiesConverterTest ...@@ -262,6 +263,9 @@ public class EntityPropertiesConverterTest
materialTypePE.setId(materialTypeId); materialTypePE.setId(materialTypeId);
materialTypePE.setCode(materialTypeCode); materialTypePE.setCode(materialTypeCode);
materialTypePE.setDescription(""); materialTypePE.setDescription("");
DatabaseInstancePE databaseInstancePE = new DatabaseInstancePE();
databaseInstancePE.setCode("db");
materialTypePE.setDatabaseInstance(databaseInstancePE);
return materialTypePE; return materialTypePE;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment