Skip to content

Commit 264be14

Browse files
committed
Build issue
1 parent 0324fac commit 264be14

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/common/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,18 @@ def _update_conf_group_protocol(conf=None):
4242

4343

4444
class TestConsumer(Consumer):
45-
def __init__(self, conf, **kwargs):
45+
def __init__(self, conf=None, **kwargs):
4646
_update_conf_group_protocol(conf)
4747
super(TestConsumer, self).__init__(conf, **kwargs)
4848

4949

5050
class TestDeserializingConsumer(DeserializingConsumer):
51-
def __init__(self, conf, **kwargs):
51+
def __init__(self, conf=None, **kwargs):
5252
_update_conf_group_protocol(conf)
5353
super(TestDeserializingConsumer, self).__init__(conf, **kwargs)
5454

5555

5656
class TestAvroConsumer(AvroConsumer):
57-
def __init__(self, conf, **kwargs):
57+
def __init__(self, conf=None, **kwargs):
5858
_update_conf_group_protocol(conf)
5959
super(TestAvroConsumer, self).__init__(conf, **kwargs)

0 commit comments

Comments
 (0)