diff --git a/rm-server/unit-test/java/org/alfresco/module/org_alfresco_module_rm/classification/ClassificationServiceDAOUnitTest.java b/rm-server/unit-test/java/org/alfresco/module/org_alfresco_module_rm/classification/ClassificationServiceDAOUnitTest.java index 9c66f1a629..7666cd3f95 100644 --- a/rm-server/unit-test/java/org/alfresco/module/org_alfresco_module_rm/classification/ClassificationServiceDAOUnitTest.java +++ b/rm-server/unit-test/java/org/alfresco/module/org_alfresco_module_rm/classification/ClassificationServiceDAOUnitTest.java @@ -36,10 +36,10 @@ import org.junit.Test; */ public class ClassificationServiceDAOUnitTest { - private static final List DEFAULT_CLASSIFICATION_LEVELS = asLevelList("TopSecret", "TS", - "Secret", "S", - "Confidential", "C", - "NoClearance", "NC"); + private static final List DEFAULT_CLASSIFICATION_LEVELS = asLevelList("level1", "l1", + "level2", "l2", + "level3", "l3", + "level4", "l4"); @Test public void getConfiguredLevels_readingDefaultConfigurationShouldWork() { @@ -78,7 +78,7 @@ public class ClassificationServiceDAOUnitTest c.setReasonConfigLocation("/no/such/resource"); assertTrue(c.getConfiguredReasons().isEmpty()); } - + @Test (expected = MalformedConfiguration.class) public void getConfiguredReasons_readingMalformedConfigurationShouldFail() {