From f765666b0f8227c3e242be7e6f93f050c441cb0e Mon Sep 17 00:00:00 2001 From: Pavol Mederly Date: Fri, 27 Mar 2020 16:33:18 +0100 Subject: [PATCH] Add FIXME comments to failing tests in TestStrings --- .../java/com/evolveum/midpoint/testing/story/TestStrings.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/story/src/test/java/com/evolveum/midpoint/testing/story/TestStrings.java b/testing/story/src/test/java/com/evolveum/midpoint/testing/story/TestStrings.java index 955708958b4..165bde4b01a 100644 --- a/testing/story/src/test/java/com/evolveum/midpoint/testing/story/TestStrings.java +++ b/testing/story/src/test/java/com/evolveum/midpoint/testing/story/TestStrings.java @@ -716,6 +716,7 @@ public void test205EightDaysLater() throws Exception { assertNull("process messages", processMessages); assertEquals("Wrong # of work items allocation messages", 4, allocationMessages.size()); ArrayListValuedHashMap sorted = sortByRecipients(allocationMessages); + // FIXME The following assertions fail when daylight saving switch is approaching. We should fix it somehow, some day ... assertMessage(sorted.get("guybrush@evolveum.com").get(0), "guybrush@evolveum.com", "Work item will be automatically completed in 2 days 12 hours", "Work item: Assigning role \"a-test-1\" to user \"carla\"", "Stage: Line managers (1/3)", "Escalation level: Line manager escalation (1)", @@ -862,6 +863,7 @@ public void test208SixDaysLater() throws Exception { assertEquals("Wrong # of work items allocation messages", 2, allocationMessages.size()); Map sorted = sortByRecipientsSingle(allocationMessages); + // FIXME The following assertions fail when daylight saving switch is approaching. We should fix it somehow, some day ... assertMessage(sorted.get("elaine@evolveum.com"), "elaine@evolveum.com", "Work item will be automatically completed in 2 days", "Security (2/3)", "Allocated to: Elaine Marley (elaine)", "(in 7 days)");