Skip to content

Commit

Permalink
Typo in test case. All tests passing now
Browse files Browse the repository at this point in the history
  • Loading branch information
clay committed Apr 14, 2023
1 parent d807ee1 commit 286c95c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/commands/test_produce.py
Expand Up @@ -4,7 +4,7 @@

import confluent_kafka
import pytest
from _pytest.tmpdir import TempdirFactory
from _pytest.tmpdir import TempPathFactory
from click.testing import CliRunner
from confluent_kafka.cimpl import Consumer, TopicPartition
from pytest_cases import fixture
Expand Down Expand Up @@ -44,7 +44,7 @@ def test_produce_can_create_topic(
consumer_factory: Callable[[str], Consumer],
non_interactive_cli_runner: CliRunner,
topic_id: str,
tmpdir_factory: TempdirFactory,
tmpdir_factory: TempPathFactory,
):
data = json.dumps(dict(key="key1", value="value1")) + "\n"
result = non_interactive_cli_runner.invoke(
Expand Down

0 comments on commit 286c95c

Please sign in to comment.