diff options
author | vasraz <vasyl.razinkov@est.tech> | 2021-08-26 01:24:51 +0100 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2021-08-26 00:28:57 +0000 |
commit | 0c2661a7dfd1de644c7a3f9f42fc1883d3ceff78 (patch) | |
tree | 63b2d7630087b1e702ec5bf54593668879f29303 | |
parent | 0499f0cd3522202708c926754e45a6d5e9c3c080 (diff) |
Fix broken build
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: I513b244dec9d420cd9314468647191f91314a3e0
Issue-ID: SDC-3687
-rw-r--r-- | catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogicTest.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogicTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogicTest.java index 6b52ed8d87..09aae40244 100644 --- a/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogicTest.java +++ b/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogicTest.java @@ -1492,7 +1492,7 @@ public class ResourceBusinessLogicTest { roleProp.setName("role"); roleProp.setType("string"); vduCp.getProperties().add(roleProp); - when(toscaOperationFacade.getLatestByToscaResourceNameAndModel("tosca.nodes.nfv.VduCp", "testModel")).thenReturn(Either.left(vduCp)); + when(toscaOperationFacade.getLatestByToscaResourceNameAndModel("tosca.nodes.nfv.VduCp", "testModel_myVnf1.0")).thenReturn(Either.left(vduCp)); when(yamlTemplateParsingHandler.parseResourceInfoFromYAML(any(), any(), any(), any(), any(), any())).thenReturn(parsedToscaYamlInfo); @@ -1536,7 +1536,6 @@ public class ResourceBusinessLogicTest { }). when(toscaOperationFacade).associateOrAddCalculatedCapReq(any(), any(), any()); - when(toscaOperationFacade.updateCalculatedCapabilitiesRequirements(any(), any(), any())).thenReturn(StorageOperationStatus.OK); when(groupBusinessLogic.validateUpdateVfGroupNames(any(), any())).thenReturn(Either.left(Collections.EMPTY_MAP)); @@ -1557,7 +1556,6 @@ public class ResourceBusinessLogicTest { return Either.left(resourceResponse); }).when(toscaOperationFacade).getToscaFullElement("myVnf"); - Resource result = bl.createResourceFromCsar(resourceResponse, user, csar, "1234"); assertEquals("myDomain.myVnf", result.getToscaResourceName()); |