Skip to content

Commit

Permalink
Fix describe topic test
Browse files Browse the repository at this point in the history
  • Loading branch information
hfjn committed Oct 29, 2019
1 parent 5cdfced commit 7bfdb3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/commands/test_describe.py
Expand Up @@ -121,8 +121,8 @@ def test_describe_topic_consumergroup_in_output(
output_format: str,
loader: Callable,
):
result = non_interactive_cli_runner.invoke(describe_topic, ["-o", output_format], "-C", filled_topic.name)
result = non_interactive_cli_runner.invoke(describe_topic, ["-o", output_format, "-C", filled_topic.name])
assert result.exit_code == 0
output_dict = loader(result.output)

assert partly_read_consumer_group in output_dict["consumergroup"]
assert partly_read_consumer_group in output_dict.get("consumergroups", None)

0 comments on commit 7bfdb3d

Please sign in to comment.