From e0c6568857d01d0c3593340ceca2f12c18726073 Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Wed, 28 Sep 2022 12:16:57 -0400 Subject: [PATCH] Fix AbstractIntegrationTests Remove system.outs. --- .../rabbit/stream/support/AbstractIntegrationTests.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/spring-rabbit-stream/src/test/java/org/springframework/rabbit/stream/support/AbstractIntegrationTests.java b/spring-rabbit-stream/src/test/java/org/springframework/rabbit/stream/support/AbstractIntegrationTests.java index a8bf3cffe2..7afd67fd02 100644 --- a/spring-rabbit-stream/src/test/java/org/springframework/rabbit/stream/support/AbstractIntegrationTests.java +++ b/spring-rabbit-stream/src/test/java/org/springframework/rabbit/stream/support/AbstractIntegrationTests.java @@ -42,28 +42,22 @@ public abstract class AbstractIntegrationTests { .withExposedPorts(5672, 15672, 5552) .withPluginsEnabled("rabbitmq_stream", "rabbitmq_management") .withStartupTimeout(Duration.ofMinutes(2)); - System.out.println("Created"); RABBITMQ.start(); - System.out.println("Started"); } else { RABBITMQ = null; } - System.out.println(RABBITMQ); } public static int amqpPort() { - System.out.println("amqp:" + RABBITMQ); return RABBITMQ != null ? RABBITMQ.getMappedPort(5672) : 5672; } public static int managementPort() { - System.out.println("mgmt:" + RABBITMQ); return RABBITMQ != null ? RABBITMQ.getMappedPort(15672) : 15672; } public static int streamPort() { - System.out.println("stream:" + RABBITMQ); return RABBITMQ != null ? RABBITMQ.getMappedPort(5552) : 5552; }