We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0347d67 commit df382a6Copy full SHA for df382a6
test/src/com/rabbitmq/client/test/functional/TTLHandling.java
@@ -178,6 +178,7 @@ public void testZeroTTLDelivery() throws Exception {
178
179
protected void expectBodyAndRemainingMessages(String body, int messagesLeft) throws IOException {
180
GetResponse response = channel.basicGet(TTL_QUEUE_NAME, false);
181
+ assertNotNull(response);
182
assertEquals(body, new String(response.getBody()));
183
assertEquals(messagesLeft, response.getMessageCount());
184
}
0 commit comments