Make sendTo.replies test queue args consistent

- changed to non-autoDelete in 2.1.x
This commit is contained in:
Gary Russell
2019-08-23 16:10:42 -04:00
parent 4c2e47c801
commit c1566ffb6c

View File

@@ -1176,7 +1176,7 @@ public class EnableRabbitIntegrationTests {
@Bean
public org.springframework.amqp.core.Queue sendToReplies() {
return new org.springframework.amqp.core.Queue(sendToRepliesBean(), false, false, true);
return new org.springframework.amqp.core.Queue(sendToRepliesBean(), false, false, false);
}
@Bean
@@ -1497,7 +1497,7 @@ public class EnableRabbitIntegrationTests {
public static class DeleteQueuesExecutionListener extends AbstractTestExecutionListener {
@Override
public void afterTestClass(TestContext testContext) throws Exception {
public void afterTestClass(TestContext testContext) {
brokerRunning.removeTestQueues("sendTo.replies", "sendTo.replies.spel");
}