summaryrefslogtreecommitdiff
path: root/test/test_codec.py
diff options
context:
space:
mode:
authorMark Roberts <wizzat@gmail.com>2014-04-23 09:29:30 -0700
committerMark Roberts <wizzat@gmail.com>2014-04-23 09:29:30 -0700
commit86e1ac7b96a41cf84e220fa25a11f138555d5c7e (patch)
tree624d8f57f8109d47fa355af31223220c9807770d /test/test_codec.py
parent7c21dfece73e717029c8a582a28ed9ff1f885cb7 (diff)
downloadkafka-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.py2
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")