Skip to content

Commit 69ef01c

Browse files
committed
Fix test
1 parent 69e8003 commit 69ef01c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/functTest/groovy/com/bmuschko/gradle/docker/tasks/container/DockerCreateContainerFunctionalTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class DockerCreateContainerFunctionalTest extends AbstractGroovyDslFunctionalTes
6767
task execContainer(type: DockerExecContainer) {
6868
dependsOn startContainer
6969
targetContainerId startContainer.getContainerId()
70-
withCommand(['grep', 'tmpfs /testdata', '/proc/mounts'])
70+
commands.add(['grep', 'tmpfs /testdata', '/proc/mounts'] as String[])
7171
successOnExitCodes=[0]
7272
}
7373

0 commit comments

Comments
 (0)