diff options
author | Dana Powers <dana.powers@rd.io> | 2015-12-21 01:37:25 -0800 |
---|---|---|
committer | Dana Powers <dana.powers@rd.io> | 2015-12-28 13:44:29 -0800 |
commit | c9e6f17e42e410adfe583d987c516149bdcdcdae (patch) | |
tree | 9ec12383f55c9dcd001516f6982e4437af4de408 /test/test_util.py | |
parent | fd1801907f85ac7686b9452c08ae908c3a88cd51 (diff) | |
download | kafka-python-c9e6f17e42e410adfe583d987c516149bdcdcdae.tar.gz |
Rename TopicAndPartition -> TopicPartition
Diffstat (limited to 'test/test_util.py')
-rw-r--r-- | test/test_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_util.py b/test/test_util.py index ea3783e..7f0432b 100644 --- a/test/test_util.py +++ b/test/test_util.py @@ -104,7 +104,7 @@ class UtilTest(unittest.TestCase): kafka.util.relative_unpack('>hh', '\x00', 0) def test_group_by_topic_and_partition(self): - t = kafka.common.TopicAndPartition + t = kafka.common.TopicPartition l = [ t("a", 1), |