diff options
author | vasraz <vasyl.razinkov@est.tech> | 2022-07-04 15:47:48 +0100 |
---|---|---|
committer | Andr� Schmid <andre.schmid@est.tech> | 2022-07-11 15:37:30 +0000 |
commit | a99abdf5317f4f0f7435af71278701b3b43282a2 (patch) | |
tree | b7add2f18b556cc73b4620af954928a6016bbed8 /catalog-be/src/test/java/org | |
parent | 6545802c422ae1c40f994d2e8083666217d55848 (diff) |
Fix 'Fail to declare Input for duplicated name of property'
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: Ib9ef09944b0ae31b1cfd0dc42d9e7026b5a6ba8f
Issue-ID: SDC-4081
Diffstat (limited to 'catalog-be/src/test/java/org')
-rw-r--r-- | catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/InputsBusinessLogicTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
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<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()); |