summaryrefslogtreecommitdiff
path: root/test/test_protocol.py
diff options
context:
space:
mode:
authortpalino <tpalino@linkedin.com>2015-07-02 09:32:37 -0700
committertpalino <tpalino@linkedin.com>2015-07-02 09:32:37 -0700
commitda03827d12520bd9c8c5b35bb43e35168f09771a (patch)
tree4f6c657213c1027accd65167e5c68271efc93343 /test/test_protocol.py
parent5d8d5412e576c5514497be3809ea899378f40e56 (diff)
downloadkafka-python-da03827d12520bd9c8c5b35bb43e35168f09771a.tar.gz
Fix misnamed node to nodeId in test
Diffstat (limited to 'test/test_protocol.py')
-rw-r--r--test/test_protocol.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_protocol.py b/test/test_protocol.py
index f5bc289..ac7bea6 100644
--- a/test/test_protocol.py
+++ b/test/test_protocol.py
@@ -585,7 +585,7 @@ class TestProtocol(unittest.TestCase):
results = KafkaProtocol.decode_consumer_metadata_response(encoded)
self.assertEqual(results,
- ConsumerMetadataResponse(error = 0, node = 1, host = b'brokers1.kafka.rdio.com', port = 1000)
+ ConsumerMetadataResponse(error = 0, nodeId = 1, host = b'brokers1.kafka.rdio.com', port = 1000)
)
def test_encode_offset_request(self):