From c1ab194647450dbc7beb33802424270231bae323 Mon Sep 17 00:00:00 2001 From: Dana Powers Date: Mon, 4 Apr 2016 18:58:16 -0700 Subject: Cleanup AF_INET import in conn fixture --- test/test_conn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_conn.py') diff --git a/test/test_conn.py b/test/test_conn.py index a55e39b..f0ca2cf 100644 --- a/test/test_conn.py +++ b/test/test_conn.py @@ -24,7 +24,7 @@ def socket(mocker): @pytest.fixture def conn(socket): from socket import AF_INET - conn = BrokerConnection('localhost', 9092, socket.AF_INET) + conn = BrokerConnection('localhost', 9092, AF_INET) return conn -- cgit v1.2.1