diff --git a/tests/src/test/kotlin/test/MatchersTest.kt b/tests/src/test/kotlin/test/MatchersTest.kt index fa053b4b..4aea90eb 100644 --- a/tests/src/test/kotlin/test/MatchersTest.kt +++ b/tests/src/test/kotlin/test/MatchersTest.kt @@ -23,8 +23,8 @@ class MatchersTest : TestBase() { @Test fun anyInt() { mock().apply { - string("") - verify(this).string(any()) + int(3) + verify(this).int(any()) } }