diff options
author | Dana Powers <dana.powers@gmail.com> | 2016-04-04 18:58:16 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2016-04-07 09:49:05 -0700 |
commit | c1ab194647450dbc7beb33802424270231bae323 (patch) | |
tree | d14c26e521b101e8b4a6e14cfb4d1a9031121c54 /test/test_conn.py | |
parent | d61e861b0da1647974e617e1633c429c307789be (diff) | |
download | kafka-python-french_connection.tar.gz |
Cleanup AF_INET import in conn fixturefrench_connection
Diffstat (limited to 'test/test_conn.py')
-rw-r--r-- | test/test_conn.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |