Bumping versions
This commit is contained in:
@@ -71,7 +71,8 @@ class KubernetesClientConfigMapPropertySourceTests {
|
||||
.withNamespace("default")
|
||||
.withResourceVersion("1")
|
||||
.build())
|
||||
.addToData(Constants.APPLICATION_YAML, "dummy:\n property:\n string2: \"a\"\n int2: 1\n bool2: true\n")
|
||||
.addToData(Constants.APPLICATION_YAML,
|
||||
"dummy:\n property:\n string2: \"a\"\n int2: 1\n bool2: true\n")
|
||||
.build());
|
||||
|
||||
private static WireMockServer wireMockServer;
|
||||
|
||||
@@ -103,8 +103,9 @@ class KubernetesClientEventBasedConfigMapChangeDetectorTests {
|
||||
data.put(Constants.APPLICATION_PROPERTIES, "spring.cloud.kubernetes.configuration.watcher.refreshDelay=0\n"
|
||||
+ "logging.level.org.springframework.cloud.kubernetes=TRACE");
|
||||
Map<String, String> updateData = new HashMap<>();
|
||||
updateData.put(Constants.APPLICATION_PROPERTIES, "spring.cloud.kubernetes.configuration.watcher.refreshDelay=1\n"
|
||||
+ "logging.level.org.springframework.cloud.kubernetes=TRACE");
|
||||
updateData.put(Constants.APPLICATION_PROPERTIES,
|
||||
"spring.cloud.kubernetes.configuration.watcher.refreshDelay=1\n"
|
||||
+ "logging.level.org.springframework.cloud.kubernetes=TRACE");
|
||||
V1ConfigMap applicationConfig = new V1ConfigMap().kind("ConfigMap")
|
||||
.metadata(new V1ObjectMeta().namespace("default").name("bar1"))
|
||||
.data(data);
|
||||
|
||||
@@ -91,7 +91,8 @@ class KubernetesEnvironmentRepositoryTests {
|
||||
.addItemsItem(new V1ConfigMapBuilder()
|
||||
.withMetadata(
|
||||
new V1ObjectMetaBuilder().withName("stores").withNamespace("dev").withResourceVersion("1").build())
|
||||
.addToData(Constants.APPLICATION_YAML, "dummy:\n property:\n string2: \"dev\"\n int2: 1\n bool2: true\n")
|
||||
.addToData(Constants.APPLICATION_YAML,
|
||||
"dummy:\n property:\n string2: \"dev\"\n int2: 1\n bool2: true\n")
|
||||
.build());
|
||||
|
||||
private static final V1SecretList SECRET_LIST = new V1SecretListBuilder()
|
||||
|
||||
Reference in New Issue
Block a user