From baf4807554e860b1e4db6889e98e2a2094c9b11a Mon Sep 17 00:00:00 2001 From: Susanne Grell Date: Wed, 11 Oct 2023 16:28:29 +0200 Subject: [PATCH] fixed MissingPropertyException --- .../gesellix/docker/client/DockerImageIntegrationSpec.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-test/src/test/groovy/de/gesellix/docker/client/DockerImageIntegrationSpec.groovy b/integration-test/src/test/groovy/de/gesellix/docker/client/DockerImageIntegrationSpec.groovy index c33137c5..8682613d 100644 --- a/integration-test/src/test/groovy/de/gesellix/docker/client/DockerImageIntegrationSpec.groovy +++ b/integration-test/src/test/groovy/de/gesellix/docker/client/DockerImageIntegrationSpec.groovy @@ -704,8 +704,8 @@ class DockerImageIntegrationSpec extends Specification { .findAll { it.name.contains("gesellix") } .find { it.description == "A Testimage used for Docker Client integration tests." && - it.automated == false && - it.official == false && + it.isAutomated() == false && + it.isOfficial() == false && // it.is_trusted == true && it.name == CONSTANTS.imageRepo && it.starCount == 0