Skip to content

Commit

Permalink
Sorting changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
ognjen-j committed Dec 3, 2020
1 parent 2092b52 commit ee4df32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/commands/test_multiargs.py
Expand Up @@ -158,7 +158,7 @@ def test_topic_list_output_compatibility_for_piping(
assert result.exit_code == 0
# Invalidate cache
confluent_admin_client.poll(timeout=1)
all_topics = list(confluent_admin_client.list_topics(timeout=5).topics.keys())
all_topics = sorted(list(confluent_admin_client.list_topics(timeout=5).topics.keys()))
assert all_topics == ["__confluent.support.metrics", "__consumer_offsets"]


Expand Down

0 comments on commit ee4df32

Please sign in to comment.