diff options
Diffstat (limited to 'test/test_codec.py')
-rw-r--r-- | test/test_codec.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test_codec.py b/test/test_codec.py index c311c52..40bd1b4 100644 --- a/test/test_codec.py +++ b/test/test_codec.py @@ -14,7 +14,7 @@ from kafka.common import ( LeaderUnavailableError, PartitionUnavailableError ) from kafka.codec import ( - has_gzip, has_snappy, gzip_encode, gzip_decode, + has_snappy, gzip_encode, gzip_decode, snappy_encode, snappy_decode ) from kafka.protocol import ( @@ -23,7 +23,6 @@ from kafka.protocol import ( from testutil import * class TestCodec(unittest.TestCase): - @unittest.skipUnless(has_gzip(), "Gzip not available") def test_gzip(self): for i in xrange(1000): s1 = random_string(100) |