This is an automated email from the ASF dual-hosted git repository.
mmodzelewski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/master by this push:
new 5d7f1fcb2 fix(python): fix flaky python test (#3627)
5d7f1fcb2 is described below
commit 5d7f1fcb2dd3aba1229523a2067160222112b1fe
Author: Rimuksh Kansal <[email protected]>
AuthorDate: Wed Jul 8 15:57:08 2026 +0900
fix(python): fix flaky python test (#3627)
---
foreign/python/tests/test_topic.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/foreign/python/tests/test_topic.py
b/foreign/python/tests/test_topic.py
index f3acc5395..62bb37a5b 100644
--- a/foreign/python/tests/test_topic.py
+++ b/foreign/python/tests/test_topic.py
@@ -605,7 +605,7 @@ class TestGetTopics:
# Reverse-alphabetical names so that id-ascending (creation) order
# and name order disagree, proving the list isn't accidentally
# name-sorted.
- topic_names = [f"{unique_name()}-{i}" for i in range(topic_count, 0,
-1)]
+ topic_names = [unique_name() for _ in range(topic_count, 0, -1)]
await iggy_client.create_stream(stream_name)
for name in topic_names: