Skip to content
Snippets Groups Projects
Commit 89ed5bd5 authored by felmer's avatar felmer
Browse files

SP-298, BIS-210: test fixed. It was broken because of bug fixing...

SP-298, BIS-210: test fixed. It was broken because of bug fixing EntityPropertiesConverter in r26944.

SVN: 27093
parent f081906c
No related branches found
No related tags found
No related merge requests found
...@@ -152,8 +152,7 @@ public class ETLServiceDatabaseTest extends AbstractDAOTest ...@@ -152,8 +152,7 @@ public class ETLServiceDatabaseTest extends AbstractDAOTest
// Update the parents // Update the parents
Sample parent = findSampleByCode("3V-126"); Sample parent = findSampleByCode("3V-126");
String parentComment = "This is a new comment for a parent."; updateEntityProperty(parent, "OFFSET", "43");
updateEntityProperty(parent, "COMMENT", parentComment);
assertEquals(1, sample.getParents().size()); assertEquals(1, sample.getParents().size());
sample.addParent(parent); sample.addParent(parent);
...@@ -170,7 +169,7 @@ public class ETLServiceDatabaseTest extends AbstractDAOTest ...@@ -170,7 +169,7 @@ public class ETLServiceDatabaseTest extends AbstractDAOTest
assertTrue("The modification date should have been updated", updatedParent assertTrue("The modification date should have been updated", updatedParent
.getModificationDate().compareTo(sample.getModificationDate()) > 0); .getModificationDate().compareTo(sample.getModificationDate()) > 0);
assertEquals(sampleComment, EntityHelper.tryFindPropertyValue(updatedSample, "COMMENT")); assertEquals(sampleComment, EntityHelper.tryFindPropertyValue(updatedSample, "COMMENT"));
assertEquals(parentComment, EntityHelper.tryFindPropertyValue(updatedParent, "COMMENT")); assertEquals("43", EntityHelper.tryFindPropertyValue(updatedParent, "OFFSET"));
assertEquals(2, updatedSample.getParents().size()); assertEquals(2, updatedSample.getParents().size());
} }
......
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