From 286c95cabee814df2058fa0177c04f025c5835bd Mon Sep 17 00:00:00 2001 From: clay Date: Fri, 14 Apr 2023 15:49:56 +0200 Subject: [PATCH] Typo in test case. All tests passing now --- tests/integration/commands/test_produce.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/commands/test_produce.py b/tests/integration/commands/test_produce.py index 28925b53..188bfd5c 100644 --- a/tests/integration/commands/test_produce.py +++ b/tests/integration/commands/test_produce.py @@ -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 @@ -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(