Bump conf service version and remove obsolete object init
This commit is contained in:
parent
355cb16679
commit
122d5a556e
@ -20,7 +20,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.iqser.red.service</groupId>
|
<groupId>com.iqser.red.service</groupId>
|
||||||
<artifactId>configuration-service-api-v1</artifactId>
|
<artifactId>configuration-service-api-v1</artifactId>
|
||||||
<version>1.1.7</version>
|
<version>1.2.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.drools</groupId>
|
<groupId>org.drools</groupId>
|
||||||
|
|||||||
@ -436,15 +436,12 @@ public class EntityRedactionServiceTest {
|
|||||||
|
|
||||||
// Default empty return to prevent NPEs
|
// Default empty return to prevent NPEs
|
||||||
DictionaryResponse dictionaryResponse = DictionaryResponse.builder()
|
DictionaryResponse dictionaryResponse = DictionaryResponse.builder()
|
||||||
.entries(Collections.emptyList())
|
|
||||||
.build();
|
.build();
|
||||||
when(dictionaryClient.getDictionaryForType(NAME_CODE)).thenReturn(dictionaryResponse);
|
when(dictionaryClient.getDictionaryForType(NAME_CODE)).thenReturn(dictionaryResponse);
|
||||||
DictionaryResponse addressResponse = DictionaryResponse.builder()
|
DictionaryResponse addressResponse = DictionaryResponse.builder()
|
||||||
.entries(Collections.emptyList())
|
|
||||||
.build();
|
.build();
|
||||||
when(dictionaryClient.getDictionaryForType(ADDRESS_CODE)).thenReturn(addressResponse);
|
when(dictionaryClient.getDictionaryForType(ADDRESS_CODE)).thenReturn(addressResponse);
|
||||||
DictionaryResponse sponsorResponse = DictionaryResponse.builder()
|
DictionaryResponse sponsorResponse = DictionaryResponse.builder()
|
||||||
.entries(Collections.emptyList())
|
|
||||||
.build();
|
.build();
|
||||||
when(dictionaryClient.getDictionaryForType(SPONSOR_CODE)).thenReturn(sponsorResponse);
|
when(dictionaryClient.getDictionaryForType(SPONSOR_CODE)).thenReturn(sponsorResponse);
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user