Skip to content

Commit ce6a747

Browse files
authored
Merge pull request #358 from BraisGabin/fix-matchers-test
Fix MatchersTest
2 parents d87150d + 19470e0 commit ce6a747

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)