diff --git a/tools/impl/test_runner.py b/tools/impl/test_runner.py index 43c63193ff..501c5f12a9 100644 --- a/tools/impl/test_runner.py +++ b/tools/impl/test_runner.py @@ -501,7 +501,7 @@ def main(): flakes = [r for r in all_results if r.previous_attempts] if flakes: print() - print("There are {len(flakes)} flaky tests") + print(f"There are {len(flakes)} flaky tests") for result in flakes: print(f" {result.name}")