diff options
author | tkogut <tomasz.kogut@nokia.com> | 2020-09-17 10:47:37 +0200 |
---|---|---|
committer | tkogut <tomasz.kogut@nokia.com> | 2020-09-17 10:47:37 +0200 |
commit | b95c61227886063e22c5d679bb907aaf7da48fd3 (patch) | |
tree | 1cc3ef28a5f5c5b2936266f8bbf948f34d63472b | |
parent | dbe9528c1571b97728649b54e00be6ae947c23ef (diff) |
[OOM-CPMv2] Fix sonar issue
Remove unnecessary 'public' modifiers
Issue-ID: OOM-2526
Signed-off-by: tkogut <tomasz.kogut@nokia.com>
Change-Id: I94a67899ea1e1c4e207234206b94273b4dbf27b6
-rw-r--r-- | certServiceClient/src/test/java/org/onap/oom/certservice/client/configuration/EnvsForCsrTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/certServiceClient/src/test/java/org/onap/oom/certservice/client/configuration/EnvsForCsrTest.java b/certServiceClient/src/test/java/org/onap/oom/certservice/client/configuration/EnvsForCsrTest.java index ade13f75..9212269c 100644 --- a/certServiceClient/src/test/java/org/onap/oom/certservice/client/configuration/EnvsForCsrTest.java +++ b/certServiceClient/src/test/java/org/onap/oom/certservice/client/configuration/EnvsForCsrTest.java @@ -99,7 +99,7 @@ class EnvsForCsrTest { } @Test - public void shouldReportThatSystemEnvOuVariableIsNotPresentWhenItWasNotDefined() { + void shouldReportThatSystemEnvOuVariableIsNotPresentWhenItWasNotDefined() { // when final Optional<String> testEnv = envsForCsr.getOrganizationUnit(); @@ -191,7 +191,7 @@ class EnvsForCsrTest { } @Test - public void shouldReportThatSystemEnvSansVariableIsNotPresentWhenItWasNotDefined() { + void shouldReportThatSystemEnvSansVariableIsNotPresentWhenItWasNotDefined() { // when final Optional<String> testEnv = envsForCsr.getSubjectAlternativesName(); |