Sometimes one of my tests fails with `ConcurrentMo...
# mockk
p
Sometimes one of my tests fails with
ConcurrentModificationException
.. the tests looks kind of like this:
Copy code
service.doSomething()

verify { mock1.aMethod() }
verify { mock2.aMethod() }
verify { mock3.aMethod() }
verify { mock4.aMethod() }
verify { mock5.aMethod() }
verify { mock6.aMethod() }
it throws the exception on the first
verify
.. any clue what it could mean?
o
Can you create a ticket on GH?