fixed integration tests

This commit is contained in:
anhefti 2021-09-21 16:19:48 +02:00
parent 4e3b397b28
commit 4b79662246

View file

@ -2885,11 +2885,7 @@ public class UseCasesIntegrationTest extends GuiIntegrationTest {
assertFalse(deleteExamCall.hasError());
final EntityProcessingReport entityProcessingReport = deleteExamCall.get();
assertTrue(entityProcessingReport.getErrors().isEmpty());
assertEquals(
"[EntityKey [modelId=5, entityType=INDICATOR], "
+ "EntityKey [modelId=4, entityType=EXAM_CONFIGURATION_MAP], "
+ "EntityKey [modelId=3, entityType=EXAM]]",
new LinkedHashSet<>(entityProcessingReport.getResults()).toString());
assertTrue(entityProcessingReport.results.size() == 3);
}