From 779460aecd3bc275a8c339287bc0c5d8ba6f8e4e Mon Sep 17 00:00:00 2001 From: Claudia Agache Date: Fri, 10 Apr 2020 19:49:17 +0300 Subject: [PATCH] small fix --- .../org/alfresco/rest/rm/community/search/CmisQueryTests.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/search/CmisQueryTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/CmisQueryTests.java index 7c703f9727..64acc7b90a 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/CmisQueryTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/CmisQueryTests.java @@ -95,7 +95,7 @@ public class CmisQueryTests extends BaseRMRestTest for (int i = 0; ++i <= 10; ) { FileModel fileModel = new FileModel(String.format("%s.%s", "Doc" + i + SEARCH_TERM, - FileType.TEXT_PLAIN.extention)); + FileType.TEXT_PLAIN.extension)); dataContent.usingAdmin().usingSite(collaborationSite).createContent(fileModel); } @@ -107,7 +107,7 @@ public class CmisQueryTests extends BaseRMRestTest for (int i = 0; ++i <= 10; ) { FileModel fileModel = new FileModel(String.format("%s.%s", "InPlace " + SEARCH_TERM + i, - FileType.TEXT_PLAIN.extention)); + FileType.TEXT_PLAIN.extension)); fileModel = dataContent.usingUser(nonRMUser).usingSite(collaborationSite).createContent(fileModel); getRestAPIFactory().getFilesAPI(nonRMUser).declareAsRecord(fileModel.getNodeRefWithoutVersion()); }