diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2017-07-01 02:37:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-01 02:37:52 -0700 |
commit | 71ce772484cb43509742702c3f09ec7fde2923f7 (patch) | |
tree | 8546fbbb1df5e6bac85c10c910ea085556e8477e | |
parent | b8da199b54b26728f302aaccc5dd0433a8671759 (diff) | |
download | kafka-python-71ce772484cb43509742702c3f09ec7fde2923f7.tar.gz |
Fix typo
-rw-r--r-- | test/test_consumer_integration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_consumer_integration.py b/test/test_consumer_integration.py index ec00738..193a570 100644 --- a/test/test_consumer_integration.py +++ b/test/test_consumer_integration.py @@ -375,7 +375,7 @@ class TestConsumerIntegration(KafkaIntegrationTestCase): # Create a consumer with the default buffer size consumer = self.consumer() - # This consumer failes to get the message + # This consumer fails to get the message with self.assertRaises(ConsumerFetchSizeTooSmall): consumer.get_message(False, 0.1) |