Skip to content

Commit 878f5ed

Browse files
committed
Bumping versions
1 parent 5924b35 commit 878f5ed

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

spring-cloud-kubernetes-client-config/src/test/java/org/springframework/cloud/kubernetes/client/config/KubernetesClientConfigMapPropertySourceTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ class KubernetesClientConfigMapPropertySourceTests {
7171
.withNamespace("default")
7272
.withResourceVersion("1")
7373
.build())
74-
.addToData(Constants.APPLICATION_YAML, "dummy:\n property:\n string2: \"a\"\n int2: 1\n bool2: true\n")
74+
.addToData(Constants.APPLICATION_YAML,
75+
"dummy:\n property:\n string2: \"a\"\n int2: 1\n bool2: true\n")
7576
.build());
7677

7778
private static WireMockServer wireMockServer;

spring-cloud-kubernetes-client-config/src/test/java/org/springframework/cloud/kubernetes/client/config/reload/KubernetesClientEventBasedConfigMapChangeDetectorTests.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,9 @@ void watch() {
103103
data.put(Constants.APPLICATION_PROPERTIES, "spring.cloud.kubernetes.configuration.watcher.refreshDelay=0\n"
104104
+ "logging.level.org.springframework.cloud.kubernetes=TRACE");
105105
Map<String, String> updateData = new HashMap<>();
106-
updateData.put(Constants.APPLICATION_PROPERTIES, "spring.cloud.kubernetes.configuration.watcher.refreshDelay=1\n"
107-
+ "logging.level.org.springframework.cloud.kubernetes=TRACE");
106+
updateData.put(Constants.APPLICATION_PROPERTIES,
107+
"spring.cloud.kubernetes.configuration.watcher.refreshDelay=1\n"
108+
+ "logging.level.org.springframework.cloud.kubernetes=TRACE");
108109
V1ConfigMap applicationConfig = new V1ConfigMap().kind("ConfigMap")
109110
.metadata(new V1ObjectMeta().namespace("default").name("bar1"))
110111
.data(data);

spring-cloud-kubernetes-controllers/spring-cloud-kubernetes-configserver/src/test/java/org/springframework/cloud/kubernetes/configserver/KubernetesEnvironmentRepositoryTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ class KubernetesEnvironmentRepositoryTests {
9191
.addItemsItem(new V1ConfigMapBuilder()
9292
.withMetadata(
9393
new V1ObjectMetaBuilder().withName("stores").withNamespace("dev").withResourceVersion("1").build())
94-
.addToData(Constants.APPLICATION_YAML, "dummy:\n property:\n string2: \"dev\"\n int2: 1\n bool2: true\n")
94+
.addToData(Constants.APPLICATION_YAML,
95+
"dummy:\n property:\n string2: \"dev\"\n int2: 1\n bool2: true\n")
9596
.build());
9697

9798
private static final V1SecretList SECRET_LIST = new V1SecretListBuilder()

0 commit comments

Comments
 (0)