summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2010-04-01 21:42:24 +0000
committerRafael H. Schloming <rhs@apache.org>2010-04-01 21:42:24 +0000
commit5fc0f26ed50ec737b19004a2f30d3e8d6348dd29 (patch)
treee0cf4e170db367cd9455404a2a948bc1d0257976
parentabb129353b539d918797dfc5309ae767de2cfef1 (diff)
downloadqpid-python-5fc0f26ed50ec737b19004a2f30d3e8d6348dd29.tar.gz
make reconnect test always use plain transport
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@930106 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/python/qpid/tests/messaging/endpoints.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/qpid/python/qpid/tests/messaging/endpoints.py b/qpid/python/qpid/tests/messaging/endpoints.py
index a6c7046d01..b60775b54b 100644
--- a/qpid/python/qpid/tests/messaging/endpoints.py
+++ b/qpid/python/qpid/tests/messaging/endpoints.py
@@ -76,8 +76,7 @@ class SetupTests(Base):
options = self.connection_options()
import socket
from qpid.messaging import transports
- transport = options.get("transport", "plain")
- real = getattr(transports, transport)
+ real = transports.plain
class flaky: