summaryrefslogtreecommitdiff
path: root/python/qpid/tests
diff options
context:
space:
mode:
Diffstat (limited to 'python/qpid/tests')
-rw-r--r--python/qpid/tests/messaging/__init__.py2
-rw-r--r--python/qpid/tests/messaging/message.py1
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