We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbbd55f commit 5facbfaCopy full SHA for 5facbfa
core/jvm/test/testcontainers/TimeZoneTest.kt
@@ -16,15 +16,17 @@ class TimeZoneTest {
16
17
private val logger = LoggerFactory.getLogger(javaClass)
18
19
+ private val dockerfilePath = "./jvm/test/testcontainers/%s/Dockerfile"
20
+
21
@Container
22
val originalContainer = TimezoneTestContainer(
- Paths.get("./jvm/test/testcontainers/original/Dockerfile"),
23
+ Paths.get(String.format(dockerfilePath, "original")),
24
"ubuntu-arctic-longyearbyen"
25
)
26
27
28
val modifiedContainer = TimezoneTestContainer(
- Paths.get("./jvm/test/testcontainers/modified/Dockerfile"),
29
+ Paths.get(String.format(dockerfilePath, "modified")),
30
"ubuntu-new-longyearbyen-modified"
31
32
0 commit comments