Skip to content

Commit 40e1571

Browse files
committed
changes
Signed-off-by: Lukas Kral <[email protected]>
1 parent d7eb7ae commit 40e1571

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@
9191
<test-frame.version>1.0.0</test-frame.version>
9292
<helm-client.version>0.0.13</helm-client.version>
9393
<hamcrest.version>2.2</hamcrest.version>
94-
<opentest4j.version>1.2.0</opentest4j.version>
9594

9695
<javadoc.fail.on.warnings>true</javadoc.fail.on.warnings>
9796

systemtest/src/main/java/io/strimzi/kafka/access/log/MustGatherImpl.java

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,15 @@ public class MustGatherImpl implements MustGatherSupplier {
3333
.withKubeClient(new KubeClient())
3434
.withKubeCmdClient(new Kubectl())
3535
.withRootFolderPath(Environment.TEST_LOG_DIR)
36-
.withNamespacedResources(List.of(
37-
TestConstants.SECRET.toLowerCase(Locale.ROOT),
38-
TestConstants.DEPLOYMENT.toLowerCase(Locale.ROOT),
39-
Kafka.RESOURCE_SINGULAR,
40-
KafkaUser.RESOURCE_SINGULAR,
41-
KafkaAccess.KIND
42-
).toArray(new String[0]))
36+
.withNamespacedResources(
37+
List.of(
38+
TestConstants.SECRET.toLowerCase(Locale.ROOT),
39+
TestConstants.DEPLOYMENT.toLowerCase(Locale.ROOT),
40+
Kafka.RESOURCE_SINGULAR,
41+
KafkaUser.RESOURCE_SINGULAR,
42+
KafkaAccess.KIND
43+
).toArray(new String[0])
44+
)
4345
.withCollectPreviousLogs()
4446
.build();
4547

0 commit comments

Comments
 (0)