From a99abdf5317f4f0f7435af71278701b3b43282a2 Mon Sep 17 00:00:00 2001 From: vasraz Date: Mon, 4 Jul 2022 15:47:48 +0100 Subject: Fix 'Fail to declare Input for duplicated name of property' Signed-off-by: Vasyl Razinkov Change-Id: Ib9ef09944b0ae31b1cfd0dc42d9e7026b5a6ba8f Issue-ID: SDC-4081 --- .../org/openecomp/sdc/be/components/impl/InputsBusinessLogicTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'catalog-be/src/test/java/org') diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/InputsBusinessLogicTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/InputsBusinessLogicTest.java index fd057607a1..f09f90b4ed 100644 --- a/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/InputsBusinessLogicTest.java +++ b/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/InputsBusinessLogicTest.java @@ -797,7 +797,7 @@ public class InputsBusinessLogicTest { .thenReturn(Either.left(inputDef)); Either, ResponseFormat> result = - testInstance.updateInputsValue(service.getComponentType(), COMPONENT_ID, newInputDefs, USER_ID, true, false); + testInstance.updateInputsValue(service.getComponentType(), COMPONENT_ID, newInputDefs, USER_ID, true); assertThat(result.isLeft()).isTrue(); // check if values are updated assertEquals(NEW_VALUE, service.getInputs().get(0).getDefaultValue()); -- cgit 1.2.3-korg