aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrais Gabín <braisgabin@gmail.com>2019-09-03 19:33:29 +0200
committerBrais Gabín <braisgabin@gmail.com>2019-09-03 19:33:38 +0200
commit97d8c90e935bfb4ed11dffc71cb63cf9444be6ba (patch)
tree06cdd0a2ec9fb42195a4d55f23b169ebb545dfda
parentb632b56f714fb003dcc5e4fca71a7e83e49e5c4d (diff)
downloadmockito-kotlin-97d8c90e935bfb4ed11dffc71cb63cf9444be6ba.tar.gz
Fix MatchersTest
-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())
}
}