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 | c28378f77743c198c79c7046fa1d9a445c27b897 (patch) | |
| tree | 612aeb5aa7492ac340c6568039e7067b60339d79 /python | |
| parent | 5569f9e9ad27eb36390d7fa6f427a80067bd140a (diff) | |
| download | qpid-python-c28378f77743c198c79c7046fa1d9a445c27b897.tar.gz | |
Ensure recovered messages have the redelivered flag set
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@583740 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python')
| -rw-r--r-- | python/tests_0-10/message.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/tests_0-10/message.py b/python/tests_0-10/message.py index 416eaeba3e..3e014838aa 100644 --- a/python/tests_0-10/message.py +++ b/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) |
