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/test_codec.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/test_codec.py')
-rw-r--r-- | test/test_codec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_codec.py b/test/test_codec.py index 7fedb71..c311c52 100644 --- a/test/test_codec.py +++ b/test/test_codec.py @@ -20,7 +20,7 @@ from kafka.codec import ( from kafka.protocol import ( create_gzip_message, create_message, create_snappy_message, KafkaProtocol ) -from .testutil import * +from testutil import * class TestCodec(unittest.TestCase): @unittest.skipUnless(has_gzip(), "Gzip not available") |