Fix MigratorTest after update io.mockk to v1.13.11

This commit is contained in:
Cuong M. Tran 2024-05-20 17:08:30 +07:00
parent 62af9ed50f
commit dec4410072
No known key found for this signature in database
GPG key ID: 733AA7624B9315C2

View file

@ -59,7 +59,7 @@ class MigratorTest {
val result = execute.await()
assertFalse(result)
verify { migrationJobFactory.create(any()) wasNot Called }
verify(exactly = 0) { migrationJobFactory.create(any()) }
}
@Test
@ -72,7 +72,7 @@ class MigratorTest {
val result = execute.await()
assertFalse(result)
verify { migrationJobFactory.create(any()) wasNot Called }
verify(exactly = 0) { migrationJobFactory.create(any()) }
}
@Test