File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
operator-framework/src/test/java/io/javaoperatorsdk/operator Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ void testCustomMappingAnnotationForDependent() {
40
40
41
41
extension .delete (cr );
42
42
43
- await ().untilAsserted (()-> {
43
+ await ().untilAsserted (() -> {
44
44
var resource = extension .get (ConfigMap .class , TEST_RESOURCE_NAME );
45
45
assertThat (resource ).isNull ();
46
46
});
@@ -51,10 +51,10 @@ private void assertConfigMapData(String val) {
51
51
var resource = extension .get (ConfigMap .class , TEST_RESOURCE_NAME );
52
52
assertThat (resource ).isNotNull ();
53
53
assertThat (resource .getMetadata ().getAnnotations ())
54
- .containsKey (CUSTOM_NAME_KEY )
55
- .containsKey (CUSTOM_NAMESPACE_KEY );
54
+ .containsKey (CUSTOM_NAME_KEY )
55
+ .containsKey (CUSTOM_NAMESPACE_KEY );
56
56
assertThat (resource .getData ()).containsEntry (CustomMappingConfigMapDependentResource .KEY ,
57
- INITIAL_VALUE );
57
+ val );
58
58
});
59
59
}
60
60
You can’t perform that action at this time.
0 commit comments