Fix MigratorTest after update io.mockk to v1.13.11
This commit is contained in:
parent
62af9ed50f
commit
dec4410072
1 changed files with 2 additions and 2 deletions
|
|
@ -59,7 +59,7 @@ class MigratorTest {
|
||||||
val result = execute.await()
|
val result = execute.await()
|
||||||
assertFalse(result)
|
assertFalse(result)
|
||||||
|
|
||||||
verify { migrationJobFactory.create(any()) wasNot Called }
|
verify(exactly = 0) { migrationJobFactory.create(any()) }
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
@ -72,7 +72,7 @@ class MigratorTest {
|
||||||
val result = execute.await()
|
val result = execute.await()
|
||||||
assertFalse(result)
|
assertFalse(result)
|
||||||
|
|
||||||
verify { migrationJobFactory.create(any()) wasNot Called }
|
verify(exactly = 0) { migrationJobFactory.create(any()) }
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue