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 | 52836a5d3df23bd306a2f8160be780fed104f959 (patch) | |
| tree | 2e43b8ed2c18da9e870be14658366db3efb14fcc /python | |
| parent | b02119c77ee34b69a0da117a15b89d9b24ff2217 (diff) | |
| download | qpid-python-52836a5d3df23bd306a2f8160be780fed104f959.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')
| -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() |
