diff options
| author | Robert Gemmell <robbie@apache.org> | 2010-03-18 16:24:36 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2010-03-18 16:24:36 +0000 |
| commit | 6fc63916bf73cf60b07d05c08ef9484520a8e112 (patch) | |
| tree | 5cdc2d6a7e5ae1042244fdcfe86f5e4b51db1dc9 /java/systests/src | |
| parent | 86000a0fd48cea74cdcb9d4c9c30f7565eee041b (diff) | |
| download | qpid-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.java | 1 |
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()); } |
