aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiek Haarman <haarman.niek@gmail.com>2019-09-08 09:42:22 +0200
committerGitHub <noreply@github.com>2019-09-08 09:42:22 +0200
commitce6a747e7bd6b0940e4971bf5272ae59e3ddd817 (patch)
treef851875eb73d584a4247558616e5c6c355fedf88
parentd87150dec5298972a25b84cd05cb5a918bc71773 (diff)
parent19470e0420673dd65027739defb32e7c8524118f (diff)
downloadmockito-kotlin-ce6a747e7bd6b0940e4971bf5272ae59e3ddd817.tar.gz
Merge pull request #358 from BraisGabin/fix-matchers-test
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())
}
}