Skip to content

Commit

Permalink
Make random suffix longer.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidblewett committed Jan 19, 2024
1 parent 7dcafe3 commit d06700b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use rdkafka::TopicPartitionList;
pub fn rand_test_topic(test_name: &str) -> String {
let id = rand::thread_rng()
.gen_ascii_chars()
.take(10)
.take(20)
.collect::<String>();
format!("__{}_{}", test_name, id)
}
Expand Down

0 comments on commit d06700b

Please sign in to comment.