From c67ae5acb7201064c1c8f08c088428873d64b523 Mon Sep 17 00:00:00 2001 From: Ji Sungbin Date: Thu, 25 Jul 2024 12:13:32 +0900 Subject: [PATCH] Use testImplementation instead of testCompile --- assertk-coroutines/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assertk-coroutines/README.md b/assertk-coroutines/README.md index 58b4f638..78acb506 100644 --- a/assertk-coroutines/README.md +++ b/assertk-coroutines/README.md @@ -11,7 +11,7 @@ repositories { } dependencies { - testCompile("com.willowtreeapps.assertk:assertk-coroutines:0.28.0") + testImplementation("com.willowtreeapps.assertk:assertk-coroutines:0.28.0") } ``` @@ -47,4 +47,4 @@ Additionally, there's a `suspendCall()` method that works much like `prop()` but runBlocking { assertThat(person).suspendCall("resume") { it.fetchResume() }.contains("kotlin") } -``` \ No newline at end of file +```