From fd23ba8573769cb3af126f05687b2f5d3b680f81 Mon Sep 17 00:00:00 2001 From: Andrey Date: Fri, 22 Nov 2024 12:05:22 +0100 Subject: [PATCH] minor fix for logs formatting --- lib/datadog/ci/test_retries/strategy/retry_new.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/datadog/ci/test_retries/strategy/retry_new.rb b/lib/datadog/ci/test_retries/strategy/retry_new.rb index 0890feb7..277a60a1 100644 --- a/lib/datadog/ci/test_retries/strategy/retry_new.rb +++ b/lib/datadog/ci/test_retries/strategy/retry_new.rb @@ -101,7 +101,7 @@ def calculate_total_retries_limit(library_settings, test_session) end @total_limit = (tests_count * percentage_limit / 100.0).ceil Datadog.logger.debug do - "Retry new tests total limit is [#{@total_limit}] (#{percentage_limit}%) of #{tests_count}" + "Retry new tests total limit is [#{@total_limit}] (#{percentage_limit}% of #{tests_count})" end end