Skip to content

Commit

Permalink
chore: fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancetnik committed Dec 16, 2024
1 parent e4713df commit 6e60761
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/docs/en/public_api
5 changes: 3 additions & 2 deletions tests/brokers/kafka/test_publish.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import asyncio
from typing import Any
from unittest.mock import Mock

import pytest
Expand All @@ -11,8 +12,8 @@

@pytest.mark.kafka
class TestPublish(BrokerPublishTestcase):
def get_broker(self, apply_types: bool = False):
return KafkaBroker(apply_types=apply_types)
def get_broker(self, apply_types: bool = False, **kwargs: Any) -> KafkaBroker:
return KafkaBroker(apply_types=apply_types, **kwargs)

@pytest.mark.asyncio
async def test_publish_batch(self, queue: str):
Expand Down

0 comments on commit 6e60761

Please sign in to comment.