We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbb8238 commit 7348cc2Copy full SHA for 7348cc2
operator-framework/src/test/java/io/javaoperatorsdk/operator/ServiceStrictMatcherIT.java
@@ -27,6 +27,11 @@ public class ServiceStrictMatcherIT {
27
void testTheMatchingDoesNoTTriggersFurtherUpdates() {
28
var resource = operator.create(testResource());
29
30
+ await().untilAsserted(() -> {
31
+ assertThat(operator.getReconcilerOfType(ServiceStrictMatcherTestReconciler.class)
32
+ .getNumberOfExecutions()).isEqualTo(1);
33
+ });
34
+
35
// make an update to spec to reconcile again
36
resource.getSpec().setValue(2);
37
operator.replace(resource);
0 commit comments