From d8ed7a991d54bd6e53a7c1fedee808ab78dfdf19 Mon Sep 17 00:00:00 2001 From: isaac Date: Wed, 2 Feb 2022 17:26:05 -0600 Subject: Fixing sonar issues in xacml-pdp Issue-ID: POLICY-3900 Signed-off-by: isaac Change-Id: I29d22d1c6b690204270d87fff6ce42d9d00cef6a --- .../policy/xacml/pdp/application/guard/GuardPdpApplicationTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'applications/guard/src/test') diff --git a/applications/guard/src/test/java/org/onap/policy/xacml/pdp/application/guard/GuardPdpApplicationTest.java b/applications/guard/src/test/java/org/onap/policy/xacml/pdp/application/guard/GuardPdpApplicationTest.java index 29d9e7f3..5cdb6abf 100644 --- a/applications/guard/src/test/java/org/onap/policy/xacml/pdp/application/guard/GuardPdpApplicationTest.java +++ b/applications/guard/src/test/java/org/onap/policy/xacml/pdp/application/guard/GuardPdpApplicationTest.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * ONAP * ================================================================================ - * Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2019-2022 AT&T Intellectual Property. All rights reserved. * Modifications Copyright (C) 2021 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); @@ -216,14 +216,14 @@ public class GuardPdpApplicationTest { // // Decisions // - assertThat(service.actionDecisionsSupported().size()).isEqualTo(1); + assertThat(service.actionDecisionsSupported()).hasSize(1); assertThat(service.actionDecisionsSupported()).contains("guard"); // // Ensure it has the supported policy types and // can support the correct policy types. // assertThat(service.supportedPolicyTypes()).isNotEmpty(); - assertThat(service.supportedPolicyTypes().size()).isEqualTo(5); + assertThat(service.supportedPolicyTypes()).hasSize(5); assertThat(service.canSupportPolicyType( new ToscaConceptIdentifier("onap.policies.controlloop.guard.common.FrequencyLimiter", "1.0.0"))) .isTrue(); -- cgit 1.2.3-korg