File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
src/test/scala/com/typesafe/scalalogging Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -586,18 +586,18 @@ class LoggerSpec extends AnyWordSpec with Matchers with Varargs with MockitoSuga
586586 val msg = " msg"
587587 val cause = new RuntimeException (" cause" )
588588 val arg1 = " arg1"
589- val arg2 = Integer .valueOf(1 )
589+ val arg2 : Integer = Integer .valueOf(1 )
590590 val arg3 = " arg3"
591591 val arg4 = 4
592- val arg4ref = arg4.asInstanceOf [AnyRef ]
592+ val arg4ref : AnyRef = arg4.asInstanceOf [AnyRef ]
593593 val arg5 = true
594- val arg5ref = arg5.asInstanceOf [AnyRef ]
594+ val arg5ref : AnyRef = arg5.asInstanceOf [AnyRef ]
595595 val arg6 = 6L
596- val arg6ref = arg6.asInstanceOf [AnyRef ]
596+ val arg6ref : AnyRef = arg6.asInstanceOf [AnyRef ]
597597 val arg7 = new Throwable
598- val arg7ref = arg7.asInstanceOf [AnyRef ]
599- val underlying = mock[org.slf4j.Logger ]
598+ val arg7ref : AnyRef = arg7.asInstanceOf [AnyRef ]
599+ val underlying : Underlying = mock[org.slf4j.Logger ]
600600 when(p(underlying)).thenReturn(isEnabled)
601- val logger = Logger (underlying)
601+ val logger : Logger = Logger (underlying)
602602 }
603603}
You can’t perform that action at this time.
0 commit comments