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 30, 2025
1 parent edef191 commit 8cd0f34
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 @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 8cd0f34

Please sign in to comment.