Merge pull request #1238 from JunggiKim/remove-unused-println

Remove unused println statements from test methods
This commit is contained in:
Oleg Zhurakousky
2025-03-14 11:39:11 +01:00
committed by GitHub
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");
}