Skip to content

Commit 008f2ec

Browse files
committed
Fix Kotlin DSL dependency block in test toolkit setup page
1 parent 42d332d commit 008f2ec

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/en/test/setup.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,18 +89,18 @@ dependencies {
8989
```kotlin
9090
dependencies {
9191
// See https://github.com/MockBukkit/MockBukkit?tab=readme-ov-file#mag-usage for latest version
92-
testImplementation('com.github.seeseemelk:MockBukkit-v1.21:3.128.0')
92+
testImplementation("com.github.seeseemelk:MockBukkit-v1.21:3.128.0")
9393

94-
testImplementation('dev.jorel:commandapi-bukkit-test-toolkit:9.7.0')
94+
testImplementation("dev.jorel:commandapi-bukkit-test-toolkit:9.7.0")
9595

9696
// May be the shade dependency and/or mojang-mapped
97-
compileOnly('dev.jorel:commandapi-bukkit-core:9.7.0')
97+
compileOnly("dev.jorel:commandapi-bukkit-core:9.7.0")
9898

9999
// Can also be paper-api
100-
compileOnly('org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT')
100+
compileOnly("org.spigotmc:spigot-api:1.21.1-R0.1-SNAPSHOT")
101101

102102
// See https://junit.org/junit5/ for latest version
103-
testImplementation('org.junit.jupiter:junit-jupiter-engine:5.8.2')
103+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.8.2")
104104
}
105105
```
106106

0 commit comments

Comments
 (0)