From db18d33d3bca740454c3c9e6c5e62f8bcc1e70d4 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/qpid@827747 13f79535-47bb-0310-9956-ffa450edef68 --- python/tests/connection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/tests/connection.py') diff --git a/python/tests/connection.py b/python/tests/connection.py index d340e4e9c1..8c00df56e1 100644 --- a/python/tests/connection.py +++ b/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