Skip to content

Added missing type annotations in LoggerWithMarkerSpec #341

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
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
Original file line number Diff line number Diff line change
Expand Up @@ -368,14 +368,16 @@ class LoggerWithMarkerSpec extends AnyWordSpec with Matchers with Varargs with M

private def fixture(p: Underlying => Marker => Boolean, isEnabled: Boolean) = new LoggerF(p, isEnabled)
private class LoggerF(p: Underlying => Marker => Boolean, isEnabled: Boolean) {
val marker = DummyMarker
val marker: DummyMarker.type = DummyMarker
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 underlying = mock[org.slf4j.Logger]
val underlying: Underlying = mock[org.slf4j.Logger]

when(p(underlying)(marker)).thenReturn(isEnabled)
val logger = Logger(underlying)

val logger: Logger = Logger(underlying)
}
}