We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6862d43 commit 2f4372eCopy full SHA for 2f4372e
test/src/com/rabbitmq/client/test/functional/ReplyTo.java renamed to test/src/com/rabbitmq/client/test/functional/DirectReplyTo.java
@@ -9,7 +9,7 @@
9
10
import java.io.IOException;
11
12
-public class ReplyTo extends BrokerTestCase {
+public class DirectReplyTo extends BrokerTestCase {
13
private static final String QUEUE = "amq.rabbitmq.reply-to";
14
15
public void testRoundTrip() throws IOException, InterruptedException {
test/src/com/rabbitmq/client/test/functional/FunctionalTests.java
@@ -78,6 +78,6 @@ public static void add(TestSuite suite) {
78
suite.addTestSuite(ConnectionRecovery.class);
79
suite.addTestSuite(ExceptionHandling.class);
80
suite.addTestSuite(PerConsumerPrefetch.class);
81
- suite.addTestSuite(ReplyTo.class);
+ suite.addTestSuite(DirectReplyTo.class);
82
}
83
0 commit comments