From d075f716c6f749839008d5e39d74ebd237ef4e94 Mon Sep 17 00:00:00 2001 From: "Stephen D. Huston" Date: Tue, 20 Oct 2009 17:56:01 +0000 Subject: 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 --- qpid/python/tests/connection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qpid/python/tests') 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() -- cgit v1.2.1