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:
@@ -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);
|
||||
});
|
||||
}
|
||||
|
||||
@@ -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");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user