From e0dd6a1bfa19e89787081c70a798cda340049a10 Mon Sep 17 00:00:00 2001 From: Roxana Lucanu Date: Thu, 4 Jun 2020 10:49:57 +0300 Subject: [PATCH] APPS-139 fix unit test --- .../org_alfresco_module_rm/action/dm/RecordActionUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/RecordActionUtils.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/RecordActionUtils.java index ba3935293f..bfae201062 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/RecordActionUtils.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/RecordActionUtils.java @@ -167,8 +167,8 @@ public class RecordActionUtils if (LOGGER.isDebugEnabled()) { LOGGER.debug("Unable to execute " + actionName + " action, because the fileplan path could not be determined. Make sure at least one file plan has been created."); - throw new AlfrescoRuntimeException("Unable to execute " + actionName + " action, because the fileplan path could not be determined."); } + throw new AlfrescoRuntimeException("Unable to execute " + actionName + " action, because the fileplan path could not be determined."); } return filePlan; }