From b3d43b05006053a9f9630e529f4a7344b8390d3d Mon Sep 17 00:00:00 2001 From: Stefan Kopf Date: Sun, 22 Aug 2021 23:50:36 +0200 Subject: [PATCH] ACS-1907: Fix typo in test case --- .../repo/search/impl/querymodel/impl/db/ACS1907Test.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repository/src/test/java/org/alfresco/repo/search/impl/querymodel/impl/db/ACS1907Test.java b/repository/src/test/java/org/alfresco/repo/search/impl/querymodel/impl/db/ACS1907Test.java index cf70867f74..65e4741147 100644 --- a/repository/src/test/java/org/alfresco/repo/search/impl/querymodel/impl/db/ACS1907Test.java +++ b/repository/src/test/java/org/alfresco/repo/search/impl/querymodel/impl/db/ACS1907Test.java @@ -138,7 +138,7 @@ public class ACS1907Test extends TestCase NodeRef testFolder = nodeService.createNode( rootNodeRef, ContentModel.ASSOC_CHILDREN, - QName.createQName("https://example.com/test", "folder"+1), + QName.createQName("https://example.com/test", "folder"+ff), ContentModel.TYPE_FOLDER, testFolderProps ).getChildRef(); @@ -149,7 +149,7 @@ public class ACS1907Test extends TestCase NodeRef testContent = nodeService.createNode( testFolder, ContentModel.ASSOC_CONTAINS, - QName.createQName("https://example.com/test", "folder"+1), + QName.createQName("https://example.com/test", "content"+c), ContentModel.TYPE_CONTENT, testContentProps ).getChildRef();