summaryrefslogtreecommitdiff
path: root/python/qpid
diff options
context:
space:
mode:
authorRobert Godfrey <rgodfrey@apache.org>2012-02-20 21:40:37 +0000
committerRobert Godfrey <rgodfrey@apache.org>2012-02-20 21:40:37 +0000
commit931294cc4778f53eeb743679619de67547a09c2c (patch)
tree51101855a8a4c5fcd74eae9a5200d3617745ffd6 /python/qpid
parenta2e1bd98d83a8c5780b964bdabf041e1a09a0132 (diff)
downloadqpid-python-931294cc4778f53eeb743679619de67547a09c2c.tar.gz
QPID-3590 : Python test fails because Java broker (correctly) does not support null value for routing key
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1291456 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid')
-rw-r--r--python/qpid/tests/messaging/endpoints.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/qpid/tests/messaging/endpoints.py b/python/qpid/tests/messaging/endpoints.py
index db5ec03df2..3a4dc4517e 100644
--- a/python/qpid/tests/messaging/endpoints.py
+++ b/python/qpid/tests/messaging/endpoints.py
@@ -632,9 +632,9 @@ class SessionTests(Base):
def testDoubleCommit(self):
ssn = self.conn.session(transactional=True)
- snd = ssn.sender("amq.direct")
- rcv = ssn.receiver("amq.direct")
- msgs = [self.message("testDoubleCommit", i) for i in range(3)]
+ snd = ssn.sender("amq.direct/doubleCommit")
+ rcv = ssn.receiver("amq.direct/doubleCommit")
+ msgs = [self.message("testDoubleCommit", i, subject="doubleCommit") for i in range(3)]
for m in msgs:
snd.send(m)
ssn.commit()