Skip to content

Commit

Permalink
Use testImplementation instead of testCompile
Browse files Browse the repository at this point in the history
  • Loading branch information
jisungbin authored and evant committed Jul 25, 2024
1 parent 9a7abb8 commit c67ae5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assertk-coroutines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
}
dependencies {
testCompile("com.willowtreeapps.assertk:assertk-coroutines:0.28.0")
testImplementation("com.willowtreeapps.assertk:assertk-coroutines:0.28.0")
}
```

Expand Down Expand Up @@ -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")
}
```
```

0 comments on commit c67ae5a

Please sign in to comment.