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 6b867a033..e6aa429c4 100644 --- a/src/test/java/io/apicurio/registry/systemtests/api/OLMAPITests.java +++ b/src/test/java/io/apicurio/registry/systemtests/api/OLMAPITests.java @@ -19,7 +19,7 @@ public void setClusterWide(boolean clusterWide) { public void testBeforeEach(ExtensionContext testContext) throws InterruptedException { LOGGER.info("BeforeEach: " + testContext.getTestMethod().get().getName()); - ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(clusterWide); + ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(null, clusterWide); operatorManager.installOperator(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 adc037dcf..b1f8b3a81 100644 --- a/src/test/java/io/apicurio/registry/systemtests/auth/OLMAuthTests.java +++ b/src/test/java/io/apicurio/registry/systemtests/auth/OLMAuthTests.java @@ -19,7 +19,7 @@ public void setClusterWide(boolean clusterWide) { public void testBeforeEach(ExtensionContext testContext) throws InterruptedException { LOGGER.info("BeforeEach: " + testContext.getTestMethod().get().getName()); - ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(clusterWide); + ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(null, clusterWide); operatorManager.installOperator(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 10ba7ca9e..4f40b72d0 100644 --- a/src/test/java/io/apicurio/registry/systemtests/config/OLMConfigTests.java +++ b/src/test/java/io/apicurio/registry/systemtests/config/OLMConfigTests.java @@ -15,7 +15,7 @@ public abstract class OLMConfigTests extends ConfigTests { public void testBeforeEach(ExtensionContext testContext) throws InterruptedException { LOGGER.info("BeforeEach: " + testContext.getTestMethod().get().getName()); - ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(clusterWide); + ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(null, clusterWide); operatorManager.installOperator(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 49021f0fb..980856af2 100644 --- a/src/test/java/io/apicurio/registry/systemtests/deploy/OLMDeployTests.java +++ b/src/test/java/io/apicurio/registry/systemtests/deploy/OLMDeployTests.java @@ -32,7 +32,7 @@ public void setClusterWide(boolean clusterWide) { public void testBeforeEach(ExtensionContext testContext) throws InterruptedException { LOGGER.info("BeforeEach: " + testContext.getTestMethod().get().getName()); - ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(clusterWide); + ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(null, clusterWide); operatorManager.installOperator(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 b3bf5ac8e..76abdf8c9 100644 --- a/src/test/java/io/apicurio/registry/systemtests/oauthkafka/OLMOAuthKafkaTests.java +++ b/src/test/java/io/apicurio/registry/systemtests/oauthkafka/OLMOAuthKafkaTests.java @@ -19,7 +19,7 @@ public void setClusterWide(boolean clusterWide) { public void testBeforeEach(ExtensionContext testContext) throws InterruptedException { LOGGER.info("BeforeEach: " + testContext.getTestMethod().get().getName()); - ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(clusterWide); + ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(null, clusterWide); operatorManager.installOperator(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 178432d8b..d813d90f9 100644 --- a/src/test/java/io/apicurio/registry/systemtests/rapidast/OLMRapidastTests.java +++ b/src/test/java/io/apicurio/registry/systemtests/rapidast/OLMRapidastTests.java @@ -15,7 +15,7 @@ public abstract class OLMRapidastTests extends RapidastTests { public void testBeforeEach(ExtensionContext testContext) throws InterruptedException { LOGGER.info("BeforeEach: " + testContext.getTestMethod().get().getName()); - ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(clusterWide); + ApicurioRegistryOLMOperatorType registryOLMOperator = new ApicurioRegistryOLMOperatorType(null, clusterWide); operatorManager.installOperator(registryOLMOperator); }