Skip to content

Removed type annotations warnings in LoggerSpec #343

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/test/scala/com/typesafe/scalalogging/LoggerSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -586,18 +586,18 @@ class LoggerSpec extends AnyWordSpec with Matchers with Varargs with MockitoSuga
val msg = "msg"
val cause = new RuntimeException("cause")
val arg1 = "arg1"
val arg2 = Integer.valueOf(1)
val arg2: Integer = Integer.valueOf(1)
val arg3 = "arg3"
val arg4 = 4
val arg4ref = arg4.asInstanceOf[AnyRef]
val arg4ref: AnyRef = arg4.asInstanceOf[AnyRef]
val arg5 = true
val arg5ref = arg5.asInstanceOf[AnyRef]
val arg5ref: AnyRef = arg5.asInstanceOf[AnyRef]
val arg6 = 6L
val arg6ref = arg6.asInstanceOf[AnyRef]
val arg6ref: AnyRef = arg6.asInstanceOf[AnyRef]
val arg7 = new Throwable
val arg7ref = arg7.asInstanceOf[AnyRef]
val underlying = mock[org.slf4j.Logger]
val arg7ref: AnyRef = arg7.asInstanceOf[AnyRef]
val underlying: Underlying = mock[org.slf4j.Logger]
when(p(underlying)).thenReturn(isEnabled)
val logger = Logger(underlying)
val logger: Logger = Logger(underlying)
}
}