summaryrefslogtreecommitdiff
path: root/test/test_client_async.py
diff options
context:
space:
mode:
authorJeff Widman <jeff@jeffwidman.com>2018-05-28 15:58:26 -0700
committerJeff Widman <jeff@jeffwidman.com>2018-05-28 16:30:07 -0700
commitc666b4e251757b827d52d62f9d4a18ab5e728897 (patch)
treeb74c5190a0fd74afffb5318d4bd34b59ae33e25c /test/test_client_async.py
parent81cda595b3ecf17737b4e4d86efa230db2e9bd31 (diff)
downloadkafka-python-dont-use-kafka.common-internally.tar.gz
Don't use `kafka.common` internallydont-use-kafka.common-internally
This finishes the split from `kafka.common` to `kafka.errors`/`kafka.structs`.
Diffstat (limited to 'test/test_client_async.py')
-rw-r--r--test/test_client_async.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test_client_async.py b/test/test_client_async.py
index eccb564..09781ac 100644
--- a/test/test_client_async.py
+++ b/test/test_client_async.py
@@ -13,14 +13,13 @@ import time
import pytest
from kafka.client_async import KafkaClient, IdleConnectionManager
+from kafka.cluster import ClusterMetadata
from kafka.conn import ConnectionStates
import kafka.errors as Errors
from kafka.future import Future
from kafka.protocol.metadata import MetadataResponse, MetadataRequest
from kafka.protocol.produce import ProduceRequest
from kafka.structs import BrokerMetadata
-from kafka.cluster import ClusterMetadata
-from kafka.future import Future
@pytest.fixture