Skip to content

Commit

Permalink
Fix issue with shadowed naming
Browse files Browse the repository at this point in the history
  • Loading branch information
morgen-peschke committed Jun 1, 2024
1 parent 700d952 commit 0719e86
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ import cats.syntax.all.*
import org.typelevel.log4cats.SelfAwareStructuredLogger
import org.typelevel.log4cats.testing.TestingLoggerFactory
import org.typelevel.log4cats.testing.TestingLoggerFactory.{
LogMessage => TestLogMessage,
Debug,
Error,
Info,
LogMessage,
Trace,
Warn
}
Expand Down Expand Up @@ -149,7 +149,7 @@ class DeferredLoggerFactoryTest extends munit.CatsEffectSuite {
.map(
_.sorted(
Order
.whenEqual[LogMessage](
.whenEqual[TestLogMessage](
Order.by(_.loggerName),
Order.by(_.level)
)
Expand Down

0 comments on commit 0719e86

Please sign in to comment.