Skip to content

Commit

Permalink
Update(*Tests): Set source to null for testing live version
Browse files Browse the repository at this point in the history
  • Loading branch information
rkubis committed Jan 14, 2025
1 parent 038556d commit 23ae256
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 23ae256

Please sign in to comment.