We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4536ae5 commit 5325982Copy full SHA for 5325982
src/test/java/io/csviri/operator/resourceglue/GlueTest.java
@@ -121,6 +121,7 @@ void stringTemplate() {
121
122
@Test
123
void simpleConcurrencyTest() {
124
+ // todo set 10
125
int num = 1;
126
List<Glue> glueList = testWorkflowList(num);
127
@@ -138,7 +139,7 @@ void simpleConcurrencyTest() {
138
139
}));
140
141
glueList.forEach(this::delete);
- await().untilAsserted(() -> IntStream.range(0, num).forEach(index -> {
142
+ await().timeout(Duration.ofMinutes(5)).untilAsserted(() -> IntStream.range(0, num).forEach(index -> {
143
var w = get(Glue.class, "testglue" + index);
144
assertThat(w).isNull();
145
0 commit comments