From a3da4a7625f75f719a0ef1ffe1c2bef87828d2f3 Mon Sep 17 00:00:00 2001 From: davsad Date: Wed, 16 Jun 2021 10:36:24 +0100 Subject: Support for associating interface types to models Issue-ID: SDC-3639 Change-Id: I5eaa9ffbe3c88416bf17ff9a94e76faad79fe888 Signed-off-by: davsad --- .../sdc/be/components/impl/InterfaceLifecycleTypeImportManagerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'catalog-be/src/test') diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/InterfaceLifecycleTypeImportManagerTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/InterfaceLifecycleTypeImportManagerTest.java index 21307ad608..9cd18bc9a2 100644 --- a/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/InterfaceLifecycleTypeImportManagerTest.java +++ b/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/InterfaceLifecycleTypeImportManagerTest.java @@ -84,7 +84,7 @@ public class InterfaceLifecycleTypeImportManagerTest { public void createLifecycleTypesTest() throws IOException { final String ymlContent = getYmlContent(); final Either, ResponseFormat> createCapabilityTypes = - importManager.createLifecycleTypes(ymlContent); + importManager.createLifecycleTypes(ymlContent, "test"); assertTrue(createCapabilityTypes.isLeft()); final List interfaceDefinitionList = createCapabilityTypes.left().value(); assertThat("Interface definitions should not be empty", interfaceDefinitionList, is(not(empty()))); -- cgit