aboutsummaryrefslogtreecommitdiff
path: root/tests/src/test/kotlin/test/MatchersTest.kt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/test/kotlin/test/MatchersTest.kt')
-rw-r--r--tests/src/test/kotlin/test/MatchersTest.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/test/kotlin/test/MatchersTest.kt b/tests/src/test/kotlin/test/MatchersTest.kt
index fa053b4..4aea90e 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<Methods>().apply {
- string("")
- verify(this).string(any())
+ int(3)
+ verify(this).int(any())
}
}