summaryrefslogtreecommitdiff
path: root/qpid/python
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2007-10-11 08:44:16 +0000
committerGordon Sim <gsim@apache.org>2007-10-11 08:44:16 +0000
commitffce54c2550253757dbd208d7b1d4602d08140b8 (patch)
tree04e02a32406a14efae1af80daea1806710f89896 /qpid/python
parentafce099578d149c84b16e81a9a33205f5378533b (diff)
downloadqpid-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.py1
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)