Skip to content

Commit

Permalink
feat(impl):[210] removed code smells
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-psosnowski committed Nov 9, 2023
1 parent 585af85 commit ca5b276
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/irs-helm/templates/configmap-spring-app-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ data:
rightOperand: {{ .rightOperand | quote }}
{{- end }}
connectorEndpointService:
cacheTTL: {{ tpl(.Values.edc.connectorEndpointService.cacheTTL) }}
cacheTTL: {{ .Values.edc.connectorEndpointService.cacheTTL | int64 }}
ess:
localBpn: {{ tpl (.Values.bpn | default "") . | quote }}
localEdcEndpoint: {{ tpl (.Values.edc.provider.host | default "") . | quote }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
@ExtendWith({ MockitoExtension.class,
SpringExtension.class
})
public class ConnectorEndpointServiceTest {
class ConnectorEndpointServiceTest {

@Autowired
ConnectorEndpointsService connectorEndpointsService;
Expand All @@ -52,7 +52,7 @@ public class ConnectorEndpointServiceTest {
CacheManager cacheManager;

@Test
public void shouldGenerateCacheRecordWhenFetchConnectorEndpointsCalled() {
void shouldGenerateCacheRecordWhenFetchConnectorEndpointsCalled() {
// given
final String bpnRecord = "";

Expand Down

0 comments on commit ca5b276

Please sign in to comment.