Skip to content

Commit 459ee98

Browse files
author
Steve Powell
committed
Put queue attributes back in test code.
1 parent 09c0905 commit 459ee98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/src/com/rabbitmq/client/test/server/ExclusiveQueueDurability.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class ExclusiveQueueDurability extends BrokerTestCase {
3333
void verifyQueueMissing(Channel channel, String queueName)
3434
throws IOException {
3535
try {
36-
channel.queueDeclare(queueName, true, true, false, null);
36+
channel.queueDeclare(queueName, false, false, false, null);
3737
} catch (IOException ioe) {
3838
checkShutdownSignal(AMQP.RESOURCE_LOCKED, ioe);
3939
fail("Declaring the queue resulted in a channel exception, probably meaning that it already exists");

0 commit comments

Comments
 (0)