Skip to content

Commit 4917e15

Browse files
committed
Fixed another test
1 parent 23c893d commit 4917e15

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/consumer/test_consumer_topicpartition_metadata.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ def commit_and_check(consumer, topic, metadata):
2929
assert offsets[0].metadata == metadata
3030

3131

32-
def test_consumer_topicpartition_metadata(kafka_cluster):
33-
topic = kafka_cluster.create_topic("test_topicpartition")
32+
def test_consumer_topicpartition_metadata(kafka_single_broker_cluster):
33+
topic = kafka_single_broker_cluster.create_topic("test_topicpartition")
3434
consumer_conf = {'group.id': 'pytest'}
3535

36-
c = kafka_cluster.consumer(consumer_conf)
36+
c = kafka_single_broker_cluster.consumer(consumer_conf)
3737

3838
# Commit without any metadata.
3939
metadata = None

0 commit comments

Comments
 (0)