Skip to content

Commit a7e2463

Browse files
committed
Test queue should be exclusive, non-durable, auto-delete
1 parent b032fb5 commit a7e2463

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/src/com/rabbitmq/client/test/Bug19356Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ protected void releaseResources()
7777
public void testBug19356()
7878
throws IOException
7979
{
80-
channel.queueDeclare("Bug19356Test");
80+
channel.queueDeclare("Bug19356Test", false, false, true, true, null);
8181
channel.basicPublish("", "Bug19356Test", null, "SSL".getBytes());
8282

8383
GetResponse chResponse = channel.basicGet("Bug19356Test", false);

0 commit comments

Comments
 (0)