diff options
| author | Rajith Muditha Attapattu <rajith@apache.org> | 2012-07-16 17:41:02 +0000 |
|---|---|---|
| committer | Rajith Muditha Attapattu <rajith@apache.org> | 2012-07-16 17:41:02 +0000 |
| commit | 1b11ea556b73c4374a1c93d8707dc9aa57b209e1 (patch) | |
| tree | 3bcd553dc0c13bb39a5e804b999ac0462a6bf73a /qpid/java/systests/src | |
| parent | cd62dd33516f7119e560d9ad9f1dbf8ad4558ab1 (diff) | |
| download | qpid-python-1b11ea556b73c4374a1c93d8707dc9aa57b209e1.tar.gz | |
QPID-3575
The added a system prop to revert to the previous behavior if need be.
Modified the SelectorTest#testRuntimeSelectorError test case to suit the
new behavior.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1362162 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests/src')
| -rw-r--r-- | qpid/java/systests/src/main/java/org/apache/qpid/test/client/message/SelectorTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/message/SelectorTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/message/SelectorTest.java index 2c7f426306..626592dc10 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/message/SelectorTest.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/message/SelectorTest.java @@ -233,7 +233,7 @@ public class SelectorTest extends QpidBrokerTestCase implements MessageListener { } - assertTrue("Connection should be closed", _connection.isClosed()); + assertFalse("Connection should not be closed", _connection.isClosed()); } public void testSelectorWithJMSMessageID() throws Exception |
