Fix 'Fail to declare Input for duplicated name of property'
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / components / impl / InputsBusinessLogicTest.java
index fd05760..f09f90b 100644 (file)
@@ -797,7 +797,7 @@ public class InputsBusinessLogicTest {
             .thenReturn(Either.left(inputDef));
 
         Either<List<InputDefinition>, 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());