summaryrefslogtreecommitdiff
path: root/qpid/python/tests
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-10-20 17:56:01 +0000
committerStephen D. Huston <shuston@apache.org>2009-10-20 17:56:01 +0000
commitd075f716c6f749839008d5e39d74ebd237ef4e94 (patch)
tree05dc05c036da103dcfb31a102551a43356cd0b1b /qpid/python/tests
parent9cd8ed4d2748595520e2287f37ba1c9c846dddd2 (diff)
downloadqpid-python-d075f716c6f749839008d5e39d74ebd237ef4e94.tar.gz
Modified to work on Windows; fixes QPID-2149.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@827747 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/tests')
-rw-r--r--qpid/python/tests/connection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/python/tests/connection.py b/qpid/python/tests/connection.py
index d340e4e9c1..8c00df56e1 100644
--- a/qpid/python/tests/connection.py
+++ b/qpid/python/tests/connection.py
@@ -91,11 +91,11 @@ class ConnectionTest(TestCase):
def tearDown(self):
self.running = False
- connect("0.0.0.0", PORT).close()
+ connect("127.0.0.1", PORT).close()
self.server.join(3)
def connect(self, **kwargs):
- return Connection(connect("0.0.0.0", PORT), **kwargs)
+ return Connection(connect("127.0.0.1", PORT), **kwargs)
def test(self):
c = self.connect()