diff options
| author | Gordon Sim <gsim@apache.org> | 2007-10-11 08:44:16 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2007-10-11 08:44:16 +0000 |
| commit | ffce54c2550253757dbd208d7b1d4602d08140b8 (patch) | |
| tree | 04e02a32406a14efae1af80daea1806710f89896 /qpid/python | |
| parent | afce099578d149c84b16e81a9a33205f5378533b (diff) | |
| download | qpid-python-ffce54c2550253757dbd208d7b1d4602d08140b8.tar.gz | |
Ensure recovered messages have the redelivered flag set
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@583740 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
| -rw-r--r-- | qpid/python/tests_0-10/message.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/python/tests_0-10/message.py b/qpid/python/tests_0-10/message.py index 416eaeba3e..3e014838aa 100644 --- a/qpid/python/tests_0-10/message.py +++ b/qpid/python/tests_0-10/message.py @@ -221,6 +221,7 @@ class MessageTests(TestBase): for d in data: msg = unconfirmed.get(timeout=1) self.assertEqual(d, msg.content.body) + self.assertEqual(True, msg.content['redelivered']) self.assertEmpty(unconfirmed) data.remove(msg.content.body) msg.complete(cumulative=False) |
