Skip to content

Commit

Permalink
Fix some type validation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
knutwannheden committed Oct 30, 2023
1 parent ed33607 commit cf9e181
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/openrewrite/java/logging/AddLoggerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ void notIfExistingLogger() {
import org.slf4j.LoggerFactory;
class Test {
private static final Logger LOGGER = LoggerFactory.getLogger(Inner.class);
private static final Logger LOGGER = LoggerFactory.getLogger(Test.class);
}
"""
)
Expand All @@ -120,7 +120,7 @@ void notIfExistingInheritedLogger() {
import org.slf4j.LoggerFactory;
class Base {
protected static final Logger LOGGER = LoggerFactory.getLogger(Inner.class);
protected static final Logger LOGGER = LoggerFactory.getLogger(Base.class);
}
"""
),
Expand Down

0 comments on commit cf9e181

Please sign in to comment.