summaryrefslogtreecommitdiff
path: root/java/systests/src
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2010-03-18 16:24:36 +0000
committerRobert Gemmell <robbie@apache.org>2010-03-18 16:24:36 +0000
commit6fc63916bf73cf60b07d05c08ef9484520a8e112 (patch)
tree5cdc2d6a7e5ae1042244fdcfe86f5e4b51db1dc9 /java/systests/src
parent86000a0fd48cea74cdcb9d4c9c30f7565eee041b (diff)
downloadqpid-python-6fc63916bf73cf60b07d05c08ef9484520a8e112.tar.gz
QPID-2397: add Binding.msgMatched() support to the TopicExchange, and remove its internal usage of the TopicBinding class
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@924881 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/systests/src')
-rw-r--r--java/systests/src/main/java/org/apache/qpid/test/unit/topic/DurableSubscriptionTest.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/test/unit/topic/DurableSubscriptionTest.java b/java/systests/src/main/java/org/apache/qpid/test/unit/topic/DurableSubscriptionTest.java
index 91bb5d2529..cafd212dd3 100644
--- a/java/systests/src/main/java/org/apache/qpid/test/unit/topic/DurableSubscriptionTest.java
+++ b/java/systests/src/main/java/org/apache/qpid/test/unit/topic/DurableSubscriptionTest.java
@@ -334,6 +334,7 @@ public class DurableSubscriptionTest extends QpidTestCase
{
_logger.info("Receive message on consumer 3 :expecting B");
msg = consumer3.receive(POSITIVE_RECEIVE_TIMEOUT);
+ assertNotNull(msg);
assertEquals("B", ((TextMessage) msg).getText());
}