diff --git a/src/test/java/io/apicurio/registry/systemtests/api/OLMAPITests.java b/src/test/java/io/apicurio/registry/systemtests/api/OLMAPITests.java index 83f56638a..65fada09e 100644 --- a/src/test/java/io/apicurio/registry/systemtests/api/OLMAPITests.java +++ b/src/test/java/io/apicurio/registry/systemtests/api/OLMAPITests.java @@ -20,7 +20,7 @@ public void setClusterWide(boolean clusterWide) { public void testBeforeAll(ExtensionContext testContext) throws InterruptedException { LOGGER.info("BeforeAll: " + testContext.getTestClass().get().getSimpleName()); - ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(clusterWide); + ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(null, clusterWide); operatorManager.installOperatorShared(registryOLMOperator); } diff --git a/src/test/java/io/apicurio/registry/systemtests/auth/OLMAuthTests.java b/src/test/java/io/apicurio/registry/systemtests/auth/OLMAuthTests.java index 5b7d76c91..f67551816 100644 --- a/src/test/java/io/apicurio/registry/systemtests/auth/OLMAuthTests.java +++ b/src/test/java/io/apicurio/registry/systemtests/auth/OLMAuthTests.java @@ -20,7 +20,7 @@ public void setClusterWide(boolean clusterWide) { public void testBeforeAll(ExtensionContext testContext) throws InterruptedException { LOGGER.info("BeforeAll: " + testContext.getTestClass().get().getSimpleName()); - ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(clusterWide); + ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(null, clusterWide); operatorManager.installOperatorShared(registryOLMOperator); } diff --git a/src/test/java/io/apicurio/registry/systemtests/config/OLMConfigTests.java b/src/test/java/io/apicurio/registry/systemtests/config/OLMConfigTests.java index 4178de3cd..c625743ee 100644 --- a/src/test/java/io/apicurio/registry/systemtests/config/OLMConfigTests.java +++ b/src/test/java/io/apicurio/registry/systemtests/config/OLMConfigTests.java @@ -16,7 +16,7 @@ public abstract class OLMConfigTests extends ConfigTests { public void testBeforeAll(ExtensionContext testContext) throws InterruptedException { LOGGER.info("BeforeAll: " + testContext.getTestClass().get().getSimpleName()); - ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(clusterWide); + ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(null, clusterWide); operatorManager.installOperatorShared(registryOLMOperator); } diff --git a/src/test/java/io/apicurio/registry/systemtests/deploy/OLMDeployTests.java b/src/test/java/io/apicurio/registry/systemtests/deploy/OLMDeployTests.java index e7595a846..a09bc5d6d 100644 --- a/src/test/java/io/apicurio/registry/systemtests/deploy/OLMDeployTests.java +++ b/src/test/java/io/apicurio/registry/systemtests/deploy/OLMDeployTests.java @@ -33,7 +33,7 @@ public void setClusterWide(boolean clusterWide) { public void testBeforeAll(ExtensionContext testContext) throws InterruptedException { LOGGER.info("BeforeAll: " + testContext.getTestClass().get().getSimpleName()); - ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(clusterWide); + ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(null, clusterWide); operatorManager.installOperatorShared(registryOLMOperator); } diff --git a/src/test/java/io/apicurio/registry/systemtests/oauthkafka/OLMOAuthKafkaTests.java b/src/test/java/io/apicurio/registry/systemtests/oauthkafka/OLMOAuthKafkaTests.java index ad9aa41a6..2e49c0724 100644 --- a/src/test/java/io/apicurio/registry/systemtests/oauthkafka/OLMOAuthKafkaTests.java +++ b/src/test/java/io/apicurio/registry/systemtests/oauthkafka/OLMOAuthKafkaTests.java @@ -20,7 +20,7 @@ public void setClusterWide(boolean clusterWide) { public void testBeforeAll(ExtensionContext testContext) throws InterruptedException { LOGGER.info("BeforeAll: " + testContext.getTestClass().get().getSimpleName()); - ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(clusterWide); + ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(null, clusterWide); operatorManager.installOperatorShared(registryOLMOperator); } diff --git a/src/test/java/io/apicurio/registry/systemtests/rapidast/OLMRapidastTests.java b/src/test/java/io/apicurio/registry/systemtests/rapidast/OLMRapidastTests.java index 268eddaf3..46bd60744 100644 --- a/src/test/java/io/apicurio/registry/systemtests/rapidast/OLMRapidastTests.java +++ b/src/test/java/io/apicurio/registry/systemtests/rapidast/OLMRapidastTests.java @@ -16,7 +16,7 @@ public abstract class OLMRapidastTests extends RapidastTests { public void testBeforeAll(ExtensionContext testContext) throws InterruptedException { LOGGER.info("BeforeAll: " + testContext.getTestClass().get().getSimpleName()); - ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(clusterWide); + ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(null, clusterWide); operatorManager.installOperatorShared(registryOLMOperator); }