diff options
author | Liao Jiayi <liaojiayi@ip-192-168-36-13.cn-north-1.compute.internal> | 2017-09-04 22:27:52 +0800 |
---|---|---|
committer | Liao Jiayi <liaojiayi@ip-192-168-36-13.cn-north-1.compute.internal> | 2017-09-04 22:27:52 +0800 |
commit | d0813ab695c9f5c57a7168220bbfca985d7c70af (patch) | |
tree | 327ba3d95ff3ce6c712c80f19456fb1573125b0a /test/test_consumer_integration.py | |
parent | 24bf504cd894c85a861c6691e778359220e40323 (diff) | |
download | kafka-python-d0813ab695c9f5c57a7168220bbfca985d7c70af.tar.gz |
remove beginning/end offsets request version limit
Diffstat (limited to 'test/test_consumer_integration.py')
-rw-r--r-- | test/test_consumer_integration.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/test_consumer_integration.py b/test/test_consumer_integration.py index 4b5e78a..17e7401 100644 --- a/test/test_consumer_integration.py +++ b/test/test_consumer_integration.py @@ -735,12 +735,6 @@ class TestConsumerIntegration(KafkaIntegrationTestCase): with self.assertRaises(UnsupportedVersionError): consumer.offsets_for_times({tp: int(time.time())}) - with self.assertRaises(UnsupportedVersionError): - consumer.beginning_offsets([tp]) - - with self.assertRaises(UnsupportedVersionError): - consumer.end_offsets([tp]) - @kafka_versions('>=0.10.1') def test_kafka_consumer_offsets_for_times_errors(self): consumer = self.kafka_consumer() |