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 0b81f34 commit 960d924Copy full SHA for 960d924
test/src/com/rabbitmq/client/test/functional/DefaultExchange.java
@@ -35,11 +35,7 @@ public void testBindToDefaultExchange() throws IOException {
35
}
36
37
public void testConfigureDefaultExchange() throws IOException {
38
- try {
39
- channel.exchangeDeclare("", "direct", true);
40
- fail();
41
- } catch (IOException ioe) {
42
- checkShutdownSignal(AMQP.ACCESS_REFUSED, ioe);
43
- }
+ channel.exchangeDeclare("", "direct", true);
+ channel.exchangeDeclare("amq.default", "direct", true);
44
45
0 commit comments