diff options
| author | Robert Godfrey <rgodfrey@apache.org> | 2012-02-21 00:53:34 +0000 |
|---|---|---|
| committer | Robert Godfrey <rgodfrey@apache.org> | 2012-02-21 00:53:34 +0000 |
| commit | 93ac4058ef95f760969dc9046e70d11be8f0aa12 (patch) | |
| tree | 2e43b8ed2c18da9e870be14658366db3efb14fcc /python/qpid | |
| parent | 56ac5684ae8379de26dd38fc893fad51ec84e957 (diff) | |
| download | qpid-python-93ac4058ef95f760969dc9046e70d11be8f0aa12.tar.gz | |
QPID-3477 : Java Broker does not handle a rejection/acknowledgemnt with invalid code correctly
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1291539 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid')
| -rw-r--r-- | python/qpid/tests/messaging/endpoints.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/tests/messaging/endpoints.py b/python/qpid/tests/messaging/endpoints.py index c3702bf5be..62deacd0bd 100644 --- a/python/qpid/tests/messaging/endpoints.py +++ b/python/qpid/tests/messaging/endpoints.py @@ -524,7 +524,7 @@ class SessionTests(Base): self.ssn.acknowledge(echos[0]) self.ssn.acknowledge(echos[1], Disposition(REJECTED)) self.ssn.acknowledge(echos[2], - Disposition(REJECTED, code=3, text="test-reject")) + Disposition(REJECTED, code=0, text="test-reject")) self.drain(rej, expected=msgs[1:]) self.ssn.acknowledge() |
