Skip to content

Commit e0c6568

Browse files
committed
Fix AbstractIntegrationTests
Remove system.outs.
1 parent 0cce533 commit e0c6568

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

spring-rabbit-stream/src/test/java/org/springframework/rabbit/stream/support/AbstractIntegrationTests.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,28 +42,22 @@ public abstract class AbstractIntegrationTests {
4242
.withExposedPorts(5672, 15672, 5552)
4343
.withPluginsEnabled("rabbitmq_stream", "rabbitmq_management")
4444
.withStartupTimeout(Duration.ofMinutes(2));
45-
System.out.println("Created");
4645
RABBITMQ.start();
47-
System.out.println("Started");
4846
}
4947
else {
5048
RABBITMQ = null;
5149
}
52-
System.out.println(RABBITMQ);
5350
}
5451

5552
public static int amqpPort() {
56-
System.out.println("amqp:" + RABBITMQ);
5753
return RABBITMQ != null ? RABBITMQ.getMappedPort(5672) : 5672;
5854
}
5955

6056
public static int managementPort() {
61-
System.out.println("mgmt:" + RABBITMQ);
6257
return RABBITMQ != null ? RABBITMQ.getMappedPort(15672) : 15672;
6358
}
6459

6560
public static int streamPort() {
66-
System.out.println("stream:" + RABBITMQ);
6761
return RABBITMQ != null ? RABBITMQ.getMappedPort(5552) : 5552;
6862
}
6963

0 commit comments

Comments
 (0)