diff options
author | Dana Powers <dana.powers@gmail.com> | 2015-06-10 13:46:49 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2015-06-10 13:46:49 -0700 |
commit | 08daf324b21eb9ba237f057058ef918f4e24d16b (patch) | |
tree | a37ca26900dc4af5653776775810661eea6fe450 /test/test_client_integration.py | |
parent | 2727a07be2d80ea1601c9a78bf3a3486e6b02281 (diff) | |
parent | 92da259539cc31bf5bba859286a8b098ea242b80 (diff) | |
download | kafka-python-08daf324b21eb9ba237f057058ef918f4e24d16b.tar.gz |
Merge pull request #402 from dpkp/kafka_0_8_2_1
Use kafka 0.8.2.1 in integration tests
Diffstat (limited to 'test/test_client_integration.py')
-rw-r--r-- | test/test_client_integration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_client_integration.py b/test/test_client_integration.py index baaf79e..8853350 100644 --- a/test/test_client_integration.py +++ b/test/test_client_integration.py @@ -83,7 +83,7 @@ class TestKafkaClientIntegration(KafkaIntegrationTestCase): # Offset Tests # #################### - @kafka_versions("0.8.1", "0.8.1.1", "0.8.2.0") + @kafka_versions("0.8.1", "0.8.1.1", "0.8.2.1") def test_commit_fetch_offsets(self): req = OffsetCommitRequest(self.bytes_topic, 0, 42, b"metadata") (resp,) = self.client.send_offset_commit_request(b"group", [req]) |