Skip to content

Commit 97d8c90

Browse files
committed
Fix MatchersTest
1 parent b632b56 commit 97d8c90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/src/test/kotlin/test/MatchersTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ class MatchersTest : TestBase() {
2323
@Test
2424
fun anyInt() {
2525
mock<Methods>().apply {
26-
string("")
27-
verify(this).string(any())
26+
int(3)
27+
verify(this).int(any())
2828
}
2929
}
3030

0 commit comments

Comments
 (0)