aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/sdc/helmvalidator/config/LoggerConfigTest.java
diff options
context:
space:
mode:
authorTomasz Wrobel <tomasz.wrobel@nokia.com>2021-04-26 11:28:57 +0200
committerTomasz Wrobel <tomasz.wrobel@nokia.com>2021-04-27 15:20:51 +0200
commit5bda347bc3e8843b694c795bdc72e02d6f8b8f4f (patch)
treecb6779657b547600913c4924191c5d26f3929ee2 /src/test/java/org/onap/sdc/helmvalidator/config/LoggerConfigTest.java
parentc5ace8ac972712b00a3f04a28de7b57b14e99e03 (diff)
Align swagger documentation1.2.0
-Add examples in request parameters -Add example responses Issue-ID: SDC-3185 Signed-off-by: Tomasz Wrobel <tomasz.wrobel@nokia.com> Change-Id: Ib3896d48297c4808e252c8715b380bf6e37d8003
Diffstat (limited to 'src/test/java/org/onap/sdc/helmvalidator/config/LoggerConfigTest.java')
-rw-r--r--src/test/java/org/onap/sdc/helmvalidator/config/LoggerConfigTest.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/java/org/onap/sdc/helmvalidator/config/LoggerConfigTest.java b/src/test/java/org/onap/sdc/helmvalidator/config/LoggerConfigTest.java
index b2ae9e5..19dda3a 100644
--- a/src/test/java/org/onap/sdc/helmvalidator/config/LoggerConfigTest.java
+++ b/src/test/java/org/onap/sdc/helmvalidator/config/LoggerConfigTest.java
@@ -81,7 +81,9 @@ class LoggerConfigTest {
private void assertThatAllLogPropertiesHasExpectedValue(Properties properties, String expectedValue) {
assertThat(properties.getProperty("logging.level.web")).isEqualTo(expectedValue);
assertThat(properties.getProperty("logging.level.org.springframework")).isEqualTo(expectedValue);
+ assertThat(properties.getProperty("logging.level.org.springdoc")).isEqualTo(expectedValue);
assertThat(properties.getProperty("logging.level.org.apache.catalina.core")).isEqualTo(expectedValue);
+ assertThat(properties.getProperty("logging.level.org.apache.tomcat")).isEqualTo(expectedValue);
assertThat(properties.getProperty("logging.level.org.onap.sdc.helmvalidator")).isEqualTo(expectedValue);
}