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 2aaeff1 commit ac55105Copy full SHA for ac55105
test/src/com/rabbitmq/client/test/functional/Reject.java
@@ -109,11 +109,6 @@ public void testReject()
109
assertNull(channel.basicGet(q, false));
110
channel.basicAck(tag1, false);
111
channel.basicReject(tag3, false);
112
- try {
113
- channel.basicQos(0); //some synchronous command
114
- fail();
115
- } catch (IOException ioe) {
116
- checkShutdownSignal(AMQP.PRECONDITION_FAILED, ioe);
117
- }
+ expectChannelError(AMQP.PRECONDITION_FAILED);
118
}
119
0 commit comments