diff options
author | Dana Powers <dana.powers@gmail.com> | 2019-09-30 11:18:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-30 11:18:46 -0700 |
commit | 975087b4ae22ecdb63b757a5abe2e9643888b7fe (patch) | |
tree | aead2ad0ab08b1c4c2e0a8b9804a3e634ee099e4 /test | |
parent | 87fb1bb48f82bcaa6c5e1a1edadab2832659801c (diff) | |
download | kafka-python-975087b4ae22ecdb63b757a5abe2e9643888b7fe.tar.gz |
Follow up to PR 1782 -- fix tests (#1914)
Diffstat (limited to 'test')
-rw-r--r-- | test/test_consumer_integration.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/test_consumer_integration.py b/test/test_consumer_integration.py index c7e2ebf..a2b8f70 100644 --- a/test/test_consumer_integration.py +++ b/test/test_consumer_integration.py @@ -766,12 +766,11 @@ def test_kafka_consumer_offsets_for_time_old(kafka_consumer, topic): @pytest.mark.skipif(env_kafka_version() < (0, 10, 1), reason="Requires KAFKA_VERSION >= 0.10.1") def test_kafka_consumer_offsets_for_times_errors(kafka_consumer_factory, topic): consumer = kafka_consumer_factory(fetch_max_wait_ms=200, - request_timeout_ms=500) + request_timeout_ms=500) tp = TopicPartition(topic, 0) bad_tp = TopicPartition(topic, 100) with pytest.raises(ValueError): consumer.offsets_for_times({tp: -1}) - with pytest.raises(KafkaTimeoutError): - consumer.offsets_for_times({bad_tp: 0}) + assert consumer.offsets_for_times({bad_tp: 0}) == {bad_tp: None} |