diff options
author | Mark Roberts <wizzat@gmail.com> | 2014-04-23 09:29:30 -0700 |
---|---|---|
committer | Mark Roberts <wizzat@gmail.com> | 2014-04-23 09:29:30 -0700 |
commit | 86e1ac7b96a41cf84e220fa25a11f138555d5c7e (patch) | |
tree | 624d8f57f8109d47fa355af31223220c9807770d /test/fixtures.py | |
parent | 7c21dfece73e717029c8a582a28ed9ff1f885cb7 (diff) | |
download | kafka-python-86e1ac7b96a41cf84e220fa25a11f138555d5c7e.tar.gz |
Add test support for multiple versions of kafka. Uncomment first 0.8.1 specific test. Add rudimentary (failing) consumer resumption test
Diffstat (limited to 'test/fixtures.py')
-rw-r--r-- | test/fixtures.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixtures.py b/test/fixtures.py index 7b032f1..df6faec 100644 --- a/test/fixtures.py +++ b/test/fixtures.py @@ -7,8 +7,8 @@ import tempfile import uuid from urlparse import urlparse -from .service import ExternalService, SpawnedService -from .testutil import get_open_port +from service import ExternalService, SpawnedService +from testutil import get_open_port class Fixture(object): kafka_version = os.environ.get('KAFKA_VERSION', '0.8.0') |