diff --git a/kafka/benchmarks/producer_performance.py b/kafka/benchmarks/producer_performance.py index 4a83d12cc..eae9ee9a8 100644 --- a/kafka/benchmarks/producer_performance.py +++ b/kafka/benchmarks/producer_performance.py @@ -74,7 +74,7 @@ def _benchmark(): count_failure += 1 else: raise ValueError(r) - print("%d suceeded, %d failed" % (count_success, count_failure)) + print("%d succeeded, %d failed" % (count_success, count_failure)) start_time = time.monotonic() _benchmark()