Skip to content

Commit

Permalink
IT fix?
Browse files Browse the repository at this point in the history
Signed-off-by: Attila Mészáros <csviri@gmail.com>
  • Loading branch information
csviri committed Mar 12, 2024
1 parent b9ddaab commit d87bdac
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package io.javaoperatorsdk.operator;

import java.time.Duration;

import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.RegisterExtension;

Expand Down Expand Up @@ -56,7 +58,7 @@ void handlesCRUDOperations() {

extension.delete(res);

await().untilAsserted(() -> {
await().timeout(Duration.ofSeconds(20)).untilAsserted(() -> {
var cm1 = extension.get(ConfigMap.class, getConfigMapName(FIRST_CONFIG_MAP_ID));
var cm2 = extension.get(ConfigMap.class, getConfigMapName(SECOND_CONFIG_MAP_ID));

Expand Down

0 comments on commit d87bdac

Please sign in to comment.