From d55d51fac4149ec4447b8628cc6180af6612a0dc Mon Sep 17 00:00:00 2001 From: Radim Kubis Date: Tue, 5 Dec 2023 17:25:34 +0100 Subject: [PATCH] Update(*Tests): Set source to null for testing live version --- .../java/io/apicurio/registry/systemtests/api/OLMAPITests.java | 2 +- .../io/apicurio/registry/systemtests/auth/OLMAuthTests.java | 2 +- .../io/apicurio/registry/systemtests/config/OLMConfigTests.java | 2 +- .../io/apicurio/registry/systemtests/deploy/OLMDeployTests.java | 2 +- .../registry/systemtests/oauthkafka/OLMOAuthKafkaTests.java | 2 +- .../registry/systemtests/rapidast/OLMRapidastTests.java | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) 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 af6e011c6..4370a0a47 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); }