diff options
author | Dana Powers <dana.powers@rd.io> | 2014-08-12 21:58:22 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@rd.io> | 2014-08-13 08:14:33 -0700 |
commit | e35835719ea32b914f6c19b4e16ae9a0007b18f5 (patch) | |
tree | 62e6a1907e4dfa40985a3038c8ec76ee7206859d /test/test_client_integration.py | |
parent | d629b57a8037627a45119f40234184204a5b0995 (diff) | |
download | kafka-python-e35835719ea32b914f6c19b4e16ae9a0007b18f5.tar.gz |
Add kafka 0.8.1.1 to integration tests.
- previous 0.8.1 src appears to have actually been 0.8.1.1
based on git submodule commit. So technically this adds back 0.8.1
to the test suite.
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 261d168..49c4b57 100644 --- a/test/test_client_integration.py +++ b/test/test_client_integration.py @@ -53,7 +53,7 @@ class TestKafkaClientIntegration(KafkaIntegrationTestCase): # Offset Tests # #################### - @kafka_versions("0.8.1") + @kafka_versions("0.8.1", "0.8.1.1") def test_commit_fetch_offsets(self): req = OffsetCommitRequest(self.topic, 0, 42, "metadata") (resp,) = self.client.send_offset_commit_request("group", [req]) |