Hi there! I update to 0.39.0 and while running `kt...
# ktlint
j
Hi there! I update to 0.39.0 and while running
ktlint
it tells me that the following
import
is not being used therefore I should remove it:
Copy code
import org.mockito.Mockito.`when` as _when --- THIS LINE IS THE PROBLEM

@Before
@CallSuper
override fun setup() {
    super.setup()

    _when(...).thenReturn(...)
}
is this a known issue?
🙌 1
j
awesome, thank you!
s
yes, it’s fixed in the snapshot but we don’t have a release yet with the fix. you can add a
ktlint-disable
directive to temporarily workaround it