diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/UpdateNextDispositionActionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/UpdateNextDispositionActionTest.java
deleted file mode 100644
index 462198f5a7..0000000000
--- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/UpdateNextDispositionActionTest.java
+++ /dev/null
@@ -1,148 +0,0 @@
-/*
- * #%L
- * Alfresco Records Management Module
- * %%
- * Copyright (C) 2005 - 2016 Alfresco Software Limited
- * %%
- * This file is part of the Alfresco software.
- * -
- * If the software was purchased under a paid Alfresco license, the terms of
- * the paid license agreement will prevail. Otherwise, the software is
- * provided under the following open source license terms:
- * -
- * Alfresco is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * -
- * Alfresco is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- * -
- * You should have received a copy of the GNU Lesser General Public License
- * along with Alfresco. If not, see
- * relates to https://issues.alfresco.com/jira/browse/RM-3060
- */
- public void testUpdateNextDispositionAction_RM3060() throws Exception
- {
- doBehaviourDrivenTest(new BehaviourDrivenTest()
- {
- NodeRef record;
- NodeRef folder2;
-
- @Override
- public void given()
- {
- // create category1
- NodeRef category1 = filePlanService.createRecordCategory(filePlan, generate());
-
- // create disposition schedule for category1
- createDispositionSchedule(category1);
-
- // create category2
- NodeRef category2 = filePlanService.createRecordCategory(filePlan, generate());
-
- // create disposition schedule for category2
- createDispositionSchedule(category2);
-
- // create folder2 inside category2
- folder2 = recordFolderService.createRecordFolder(category2, generate());
-
- // create folder1 inside category1
- NodeRef folder1 = recordFolderService.createRecordFolder(category1, generate());
-
- // create record inside folder1
- record = utils.createRecord(folder1, generate(), generate());
-
- }
- @Override
- public void when() throws Exception
- {
- // link the record to folder2
- recordService.link(record, folder2);
-
- // complete record
- utils.completeRecord(record);
-
- // set the disposition as of date to now on the record
- rmActionService.executeRecordsManagementAction(record,
- EditDispositionActionAsOfDateAction.NAME,
- Collections.singletonMap(EditDispositionActionAsOfDateAction.PARAM_AS_OF_DATE, new Date()));
-
- // cut off
- rmActionService.executeRecordsManagementAction(record, CutOffAction.NAME, null);
- }
-
- @Override
- public void then() throws Exception
- {
- assertTrue(nodeService.hasAspect(record, ASPECT_CUT_OFF));
- }
- });
- }
-
- private void createDispositionSchedule(NodeRef category)
- {
- DispositionSchedule ds = utils.createDispositionSchedule(category, DEFAULT_DISPOSITION_INSTRUCTIONS, DEFAULT_DISPOSITION_DESCRIPTION, true, false, false);
-
- // create the properties for CUTOFF action and add it to the disposition action definition
- Map