Bumping versions

This commit is contained in:
spring-builds
2025-04-04 13:35:16 +00:00
parent 3a607e0f78
commit a09d767182
2 changed files with 6 additions and 6 deletions

View File

@@ -117,8 +117,8 @@ class KubernetesClientServiceInstanceMapperTests {
V1Service service = createService("database", "default", annotations, labels, servicePorts);
KubernetesServiceInstance serviceInstance = mapper.map(service);
Assertions.assertThat(serviceInstance).isNull();
Assertions.assertThat(output.getOut()).contains(
"service : database does not have any ServicePort(s), will not consider it for load balancing");
Assertions.assertThat(output.getOut())
.contains("service : database does not have any ServicePort(s), will not consider it for load balancing");
}
@Test

View File

@@ -271,10 +271,10 @@ class KubernetesClientServicesListSupplierTests {
services.add(serviceATestNamespace);
StepVerifier.create(instances).expectNext(services).verifyComplete();
Assertions.assertThat(
output.getOut()).contains("Error retrieving service with name service-a in namespace : no-service");
Assertions.assertThat(
output.getOut()).contains("discovering services in selective namespaces : [default, no-service, test]");
Assertions.assertThat(output.getOut())
.contains("Error retrieving service with name service-a in namespace : no-service");
Assertions.assertThat(output.getOut())
.contains("discovering services in selective namespaces : [default, no-service, test]");
}
}