format fix

This commit is contained in:
Satyam Sah
2025-04-04 15:36:44 +05:30
parent 9c65ffddc9
commit 920d34b289

View File

@@ -306,7 +306,8 @@ public class ImporterActionExecuterTest
retryingTransactionHelper.doInTransaction(new RetryingTransactionCallback<Void>() { retryingTransactionHelper.doInTransaction(new RetryingTransactionCallback<Void>() {
@Override @Override
public Void execute() throws Throwable { public Void execute() throws Throwable
{
NodeRef rootNodeRef = nodeService.getRootNode(storeRef); NodeRef rootNodeRef = nodeService.getRootNode(storeRef);
// create test data // create test data
@@ -323,7 +324,7 @@ public class ImporterActionExecuterTest
importerActionExecuter.execute(action, zipFileNodeRef); importerActionExecuter.execute(action, zipFileNodeRef);
NodeRef importedFolder = nodeService.getChildByName(targetFolderNodeRef, ContentModel.ASSOC_CONTAINS, "accentCharTestZip"); NodeRef importedFolder = nodeService.getChildByName(targetFolderNodeRef, ContentModel.ASSOC_CONTAINS, "accentCharTestZip");
assertNotNull("unzip action failed", importedFolder); assertNotNull("unzip action failed", importedFolder);
assertTrue("multiple folder structure created",nodeService.getChildAssocs(importedFolder).size() == 1); assertTrue("multiple folder structure created", nodeService.getChildAssocs(importedFolder).size() == 1);
} }
finally finally
{ {