File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed
operator-framework/src/test/java/io/javaoperatorsdk/operator Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,6 @@ void awaitStatusUpdated(String name) {
101
101
() -> {
102
102
SubResourceTestCustomResource cr =
103
103
operator .get (SubResourceTestCustomResource .class , name );
104
- assertThat (cr .getMetadata ().getFinalizers ()).hasSize (1 );
105
104
assertThat (cr ).isNotNull ();
106
105
assertThat (cr .getStatus ()).isNotNull ();
107
106
assertThat (cr .getStatus ().getState ())
Original file line number Diff line number Diff line change @@ -54,11 +54,8 @@ void awaitStatusUpdated(String name) {
54
54
() -> {
55
55
DoubleUpdateTestCustomResource cr =
56
56
operator .get (DoubleUpdateTestCustomResource .class , name );
57
-
58
57
assertThat (cr )
59
58
.isNotNull ();
60
- assertThat (cr .getMetadata ().getFinalizers ())
61
- .hasSize (1 );
62
59
assertThat (cr .getStatus ())
63
60
.isNotNull ();
64
61
assertThat (cr .getStatus ().getState ())
You can’t perform that action at this time.
0 commit comments