Skip to content

Commit 60f91cb

Browse files
authored
Fix LifecycleMode code example (kotest#2802)
1 parent 4c15a42 commit 60f91cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

documentation/docs/extensions/test_containers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ To do this, pass in a `LifecycleMode` parameter to the `TestContainerExtension`
222222
For example:
223223

224224
```kotlin
225-
val ds = install(JdbcTestContainerExtension(mysql), LifecycleMode.Root) {
225+
val ds = install(JdbcTestContainerExtension(mysql, LifecycleMode.Root)) {
226226
poolName = "myconnectionpool"
227227
maximumPoolSize = 8
228228
idleTimeout = 10000

0 commit comments

Comments
 (0)