Skip to content

Commit

Permalink
Update(OLM*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 Dec 14, 2023
1 parent a5ff001 commit c220c01
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 @@ -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

0 comments on commit c220c01

Please sign in to comment.