Skip to content

Commit c268105

Browse files
committed
fix
Signed-off-by: Attila Mészáros <[email protected]>
1 parent 6193bff commit c268105

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

operator-framework/src/test/java/io/javaoperatorsdk/operator/baseapi/primaryindexer/PrimaryIndexerIT.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ public class PrimaryIndexerIT {
1818
public static final String RESOURCE_NAME1 = "test1";
1919
public static final String RESOURCE_NAME2 = "test2";
2020

21-
@RegisterExtension LocallyRunOperatorExtension extension = buildOperator();
21+
@RegisterExtension
22+
LocallyRunOperatorExtension extension = buildOperator();
2223

2324
protected LocallyRunOperatorExtension buildOperator() {
2425
return LocallyRunOperatorExtension.builder()

operator-framework/src/test/java/io/javaoperatorsdk/operator/dependent/primarytosecondaydependent/PrimaryToSecondaryDependentIT.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ class PrimaryToSecondaryDependentIT {
2121

2222
public static final String TEST_CR_NAME = "test1";
2323
public static final String TEST_DATA = "testData";
24-
public @RegisterExtension static LocallyRunOperatorExtension operator =
24+
25+
@RegisterExtension
26+
public static LocallyRunOperatorExtension operator =
2527
LocallyRunOperatorExtension.builder()
2628
.withReconciler(new PrimaryToSecondaryDependentReconciler())
2729
.build();

0 commit comments

Comments
 (0)