summaryrefslogtreecommitdiffstats
path: root/container-core/src/test/java/com/yahoo/container/jdisc/LoggingTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-core/src/test/java/com/yahoo/container/jdisc/LoggingTestCase.java')
-rw-r--r--container-core/src/test/java/com/yahoo/container/jdisc/LoggingTestCase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/container-core/src/test/java/com/yahoo/container/jdisc/LoggingTestCase.java b/container-core/src/test/java/com/yahoo/container/jdisc/LoggingTestCase.java
index dce791d375f..876fd0d2b57 100644
--- a/container-core/src/test/java/com/yahoo/container/jdisc/LoggingTestCase.java
+++ b/container-core/src/test/java/com/yahoo/container/jdisc/LoggingTestCase.java
@@ -102,8 +102,8 @@ public class LoggingTestCase {
stream.send(createData());
stream.flush();
assertNull(logChecker.errorCounter.get(LogLevel.INFO));
- assertEquals(1, logChecker.errorCounter.get(LogLevel.DEBUG).intValue());
- assertEquals(2, logChecker.errorCounter.get(LogLevel.SPAM).intValue());
+ assertEquals(1, logChecker.errorCounter.get(Level.FINE).intValue());
+ assertEquals(2, logChecker.errorCounter.get(Level.FINEST).intValue());
}
}