We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 646f7dd commit 6cd0f88Copy full SHA for 6cd0f88
operator-framework/src/test/java/io/javaoperatorsdk/operator/MultipleDependentResourceIT.java
@@ -1,5 +1,7 @@
1
package io.javaoperatorsdk.operator;
2
3
+import java.time.Duration;
4
+
5
import org.junit.jupiter.api.Test;
6
import org.junit.jupiter.api.extension.RegisterExtension;
7
@@ -56,7 +58,7 @@ void handlesCRUDOperations() {
56
58
57
59
extension.delete(res);
60
- await().untilAsserted(() -> {
61
+ await().timeout(Duration.ofSeconds(20)).untilAsserted(() -> {
62
var cm1 = extension.get(ConfigMap.class, getConfigMapName(FIRST_CONFIG_MAP_ID));
63
var cm2 = extension.get(ConfigMap.class, getConfigMapName(SECOND_CONFIG_MAP_ID));
64
0 commit comments