Skip to content

Commit 59a3665

Browse files
committed
Fixing checkstyle
1 parent 3a6aabd commit 59a3665

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-k8s-client-configuration-watcher/src/test/java/org/springframework/cloud/kubernetes/configuration/watcher/ActuatorRefreshIT.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,8 @@
2424
import io.kubernetes.client.openapi.models.V1ConfigMapBuilder;
2525
import io.kubernetes.client.openapi.models.V1Deployment;
2626
import io.kubernetes.client.openapi.models.V1Service;
27-
import org.junit.jupiter.api.AfterAll;
2827
import org.junit.jupiter.api.AfterEach;
2928
import org.junit.jupiter.api.Assertions;
30-
import org.junit.jupiter.api.BeforeAll;
3129
import org.junit.jupiter.api.BeforeEach;
3230
import org.junit.jupiter.api.Disabled;
3331
import org.junit.jupiter.api.Test;
@@ -62,7 +60,7 @@ class ActuatorRefreshIT {
6260

6361
private static Util util;
6462

65-
// @BeforeAll
63+
// @BeforeAll
6664
static void beforeAll() throws Exception {
6765
K3S.start();
6866
Commons.validateImage(SPRING_CLOUD_K8S_CONFIG_WATCHER_APP_NAME, K3S);
@@ -73,7 +71,7 @@ static void beforeAll() throws Exception {
7371
configWatcher(Phase.CREATE);
7472
}
7573

76-
// @AfterAll
74+
// @AfterAll
7775
static void afterAll() throws Exception {
7876
configWatcher(Phase.DELETE);
7977
Commons.cleanUp(SPRING_CLOUD_K8S_CONFIG_WATCHER_APP_NAME, K3S);

spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-k8s-client-configuration-watcher/src/test/java/org/springframework/cloud/kubernetes/configuration/watcher/ActuatorRefreshMultipleNamespacesIT.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
import io.kubernetes.client.openapi.models.V1Secret;
3333
import io.kubernetes.client.openapi.models.V1SecretBuilder;
3434
import io.kubernetes.client.openapi.models.V1Service;
35-
import org.junit.jupiter.api.AfterAll;
36-
import org.junit.jupiter.api.BeforeAll;
3735
import org.junit.jupiter.api.Disabled;
3836
import org.junit.jupiter.api.Test;
3937
import org.testcontainers.k3s.K3sContainer;
@@ -64,7 +62,7 @@ class ActuatorRefreshMultipleNamespacesIT {
6462

6563
private static Util util;
6664

67-
// @BeforeAll
65+
// @BeforeAll
6866
static void beforeAll() throws Exception {
6967
K3S.start();
7068
Commons.validateImage(SPRING_CLOUD_K8S_CONFIG_WATCHER_APP_NAME, K3S);
@@ -77,7 +75,7 @@ static void beforeAll() throws Exception {
7775
configWatcher(Phase.CREATE);
7876
}
7977

80-
// @AfterAll
78+
// @AfterAll
8179
static void afterAll() throws Exception {
8280
configWatcher(Phase.DELETE);
8381
util.wiremock(DEFAULT_NAMESPACE, "/", Phase.DELETE);

0 commit comments

Comments
 (0)