From cac108394a567d119609ab79f55c80dcafff456f Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Mon, 17 Feb 2020 14:55:46 +0900 Subject: [PATCH] Fix typo --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 6fb6fe9..5a14b11 100644 --- a/README.adoc +++ b/README.adoc @@ -784,7 +784,7 @@ class UserController(private val repository: UserRepository) { } ---- -For tests, instead of integration tests, we are going to leverage `@WebMvcTest` and https://mockk.io/[Mockk] wich is similar to https://site.mockito.org/[Mockito] but better suited for Kotlin. +For tests, instead of integration tests, we are going to leverage `@WebMvcTest` and https://mockk.io/[Mockk] which is similar to https://site.mockito.org/[Mockito] but better suited for Kotlin. Since `@MockBean` and `@SpyBean` annotations are specific to Mockito, we are going to leverage https://github.com/Ninja-Squad/springmockk[SpringMockK] which provides similar `@MockkBean` and `@SpykBean` annotations for Mockk.