From: Joanna Jeremicz Date: Mon, 29 Oct 2018 14:28:48 +0000 (+0100) Subject: StackOverflowError in CategoryParameter X-Git-Tag: 4.0.0~135 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=b3045d3b532fac029a689826225546fd8859be13;p=vid.git StackOverflowError in CategoryParameter Change-Id: Ic07d296f4ef16032d2c363f10c824c7b3db018f4 Issue-ID: VID-339 Signed-off-by: Joanna Jeremicz --- diff --git a/vid-app-common/src/test/java/org/onap/vid/services/CategoryParameterServiceImplTest.java b/vid-app-common/src/test/java/org/onap/vid/services/CategoryParameterServiceImplTest.java index 04ee46436..6ac7b5447 100644 --- a/vid-app-common/src/test/java/org/onap/vid/services/CategoryParameterServiceImplTest.java +++ b/vid-app-common/src/test/java/org/onap/vid/services/CategoryParameterServiceImplTest.java @@ -239,10 +239,11 @@ public class CategoryParameterServiceImplTest { CategoryParameterOptionRep optionRepExisting = new CategoryParameterOptionRep(APP_ID_VID, OPTION_NAME); CategoryParameter categoryParameter = createCategoryParameter(CATEGORY_NAME, true); + CategoryParameter anotherCategoryParameter = createCategoryParameter(CATEGORY_NAME, true); categoryParameter.getOptions().add( - new CategoryParameterOption(APP_ID_VID, UNIQUE_OPTION_NAME, categoryParameter)); + new CategoryParameterOption(APP_ID_VID, UNIQUE_OPTION_NAME, anotherCategoryParameter)); categoryParameter.getOptions().add( - new CategoryParameterOption(APP_ID_SDC, OPTION_NAME, categoryParameter)); + new CategoryParameterOption(APP_ID_SDC, OPTION_NAME, anotherCategoryParameter)); List aList = createCategoryParametersList(categoryParameter); doReturn(aList).when(dataAccessService).getList(CategoryParameter.class, QUERY_STRING_FOR_CATEGORY_NAME, null, null);