From 59c6909d2dbea73b4a79d061670fc08248628d92 Mon Sep 17 00:00:00 2001 From: Rodica Sutu Date: Thu, 7 Feb 2019 09:36:18 +0200 Subject: [PATCH] java docs updates --- .../alfresco/rest/rm/community/records/DeleteRecordTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/DeleteRecordTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/DeleteRecordTests.java index 6a64805db5..79e30ea0d4 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/DeleteRecordTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/DeleteRecordTests.java @@ -297,7 +297,7 @@ public class DeleteRecordTests extends BaseRMRestTest * Then it is still possible to view the content of the copy * */ - @Test (description = "Deleting record doesn't delete the copied filed") + @Test (description = "Deleting record doesn't delete the content for the copies") @AlfrescoTest (jira = "MNT-20145") public void deleteOriginOfRecord() throws Exception { @@ -305,7 +305,7 @@ public class DeleteRecordTests extends BaseRMRestTest testSite = dataSite.usingAdmin().createPublicRandomSite(); FileModel testFile = dataContent.usingSite(testSite).createContent(CMISUtil.DocumentType.TEXT_PLAIN); - Step.STEP("Create a file copy."); + Step.STEP("Create a copy for the file created."); String postBody = JsonBodyGenerator.keyValueJson("targetParentId", testSite.getGuid()); RestNodeModel copyOfTestFile = getRestAPIFactory().getNodeAPI(testFile).copyNode(postBody);