ACS-1907: Fix typo in test case

This commit is contained in:
Stefan Kopf
2021-08-22 23:50:36 +02:00
parent a8e1ce909e
commit b3d43b0500

View File

@@ -138,7 +138,7 @@ public class ACS1907Test extends TestCase
NodeRef testFolder = nodeService.createNode( NodeRef testFolder = nodeService.createNode(
rootNodeRef, rootNodeRef,
ContentModel.ASSOC_CHILDREN, ContentModel.ASSOC_CHILDREN,
QName.createQName("https://example.com/test", "folder"+1), QName.createQName("https://example.com/test", "folder"+ff),
ContentModel.TYPE_FOLDER, ContentModel.TYPE_FOLDER,
testFolderProps testFolderProps
).getChildRef(); ).getChildRef();
@@ -149,7 +149,7 @@ public class ACS1907Test extends TestCase
NodeRef testContent = nodeService.createNode( NodeRef testContent = nodeService.createNode(
testFolder, testFolder,
ContentModel.ASSOC_CONTAINS, ContentModel.ASSOC_CONTAINS,
QName.createQName("https://example.com/test", "folder"+1), QName.createQName("https://example.com/test", "content"+c),
ContentModel.TYPE_CONTENT, ContentModel.TYPE_CONTENT,
testContentProps testContentProps
).getChildRef(); ).getChildRef();