diff options
author | Dana Powers <dana.powers@rd.io> | 2016-01-03 16:14:52 -0800 |
---|---|---|
committer | Dana Powers <dana.powers@rd.io> | 2016-01-03 16:14:52 -0800 |
commit | 9acb68901529a0158e37753c931ff00ccfaaaa7a (patch) | |
tree | 451f99b0524f1d7427666d1883b41305ef9cf8b1 | |
parent | 0334fee5509b8cb3fd6ca3c1a6025804be978107 (diff) | |
download | kafka-python-9acb68901529a0158e37753c931ff00ccfaaaa7a.tar.gz |
bootstrap_servers no longer required in KafkaConsumer (localhost default)
-rw-r--r-- | test/test_consumer.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/test_consumer.py b/test/test_consumer.py index ffce578..2c9561b 100644 --- a/test/test_consumer.py +++ b/test/test_consumer.py @@ -15,10 +15,6 @@ class TestKafkaConsumer(unittest.TestCase): with self.assertRaises(AssertionError): SimpleConsumer(MagicMock(), 'group', 'topic', partitions = [ '0' ]) - def test_broker_list_required(self): - with self.assertRaises(KafkaConfigurationError): - KafkaConsumer() - class TestMultiProcessConsumer(unittest.TestCase): def test_partition_list(self): |