diff options
author | Rafael H. Schloming <rhs@apache.org> | 2010-04-09 12:12:50 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2010-04-09 12:12:50 +0000 |
commit | 4231f0f05a3b25fc1e2981934e8e75adad62971b (patch) | |
tree | d0854d242997c19c5ac16f21195ef3dd9682bea5 /python/qpid/tests | |
parent | 73202655fab7a29140cd08e784a8e8ca9fefc951 (diff) | |
download | qpid-python-4231f0f05a3b25fc1e2981934e8e75adad62971b.tar.gz |
removed Message.to
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@932375 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/tests')
-rw-r--r-- | python/qpid/tests/messaging/__init__.py | 2 | ||||
-rw-r--r-- | python/qpid/tests/messaging/message.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/python/qpid/tests/messaging/__init__.py b/python/qpid/tests/messaging/__init__.py index b106377cc9..42e88dfd72 100644 --- a/python/qpid/tests/messaging/__init__.py +++ b/python/qpid/tests/messaging/__init__.py @@ -86,7 +86,7 @@ class Base(Test): def diff(self, m1, m2): result = {} - for attr in ("id", "subject", "user_id", "to", "reply_to", + for attr in ("id", "subject", "user_id", "reply_to", "correlation_id", "durable", "priority", "ttl", "redelivered", "properties", "content_type", "content"): diff --git a/python/qpid/tests/messaging/message.py b/python/qpid/tests/messaging/message.py index 51d7879d55..2ca1fbf155 100644 --- a/python/qpid/tests/messaging/message.py +++ b/python/qpid/tests/messaging/message.py @@ -97,7 +97,6 @@ class MessageEchoTests(Base): def testProperties(self): msg = Message() - msg.to = "to-address" msg.subject = "subject" msg.correlation_id = str(self.test_id) msg.durable = True |