From 23ae25671055596e0d8b52e709475cdc96969b5a 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 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); }