Remove unnecessary System.out.println statements

- Remove unused println in testGetWithtFunction
- Remove unused println in updates Consumer

Signed-off-by: kimjg <k42ke@naver.com>
This commit is contained in:
kimjg
2025-02-13 01:21:13 +09:00
parent 7bcad7edc8
commit 6a55729756
2 changed files with 0 additions and 2 deletions

View File

@@ -483,7 +483,6 @@ public class HttpPostIntegrationTests {
@Bean
public Consumer<Flux<String>> updates() {
return flux -> flux.subscribe(value -> {
System.out.println();
this.list.add(value);
});
}

View File

@@ -126,7 +126,6 @@ public class FunctionEndpointInitializerTests {
TestRestTemplate testRestTemplate = new TestRestTemplate();
ResponseEntity<String> response = testRestTemplate
.getForEntity(new URI("http://localhost:" + port + "/reverse/stressed"), String.class);
System.out.println();
assertThat(response.getBody()).isEqualTo("desserts");
}