From 1d1b6db3aba5d162d4a7ab3e38e5d21122f433c4 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev Date: Wed, 8 Jan 2025 00:32:36 -0500 Subject: [PATCH] rubocop --- spec/support/synchronization_helpers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/support/synchronization_helpers.rb b/spec/support/synchronization_helpers.rb index 127a55331ea..0fbae1906b1 100644 --- a/spec/support/synchronization_helpers.rb +++ b/spec/support/synchronization_helpers.rb @@ -105,7 +105,7 @@ def try_wait_until(seconds: nil, attempts: nil, backoff: nil) end elapsed = Datadog::Core::Utils::Time.get_time - start_time - actual = "#{'%.2f' % elapsed} seconds, #{attempts} attempts with backoff #{backoff}" + actual = "#{'%.2f' % elapsed} seconds, #{attempts} attempts with backoff #{backoff}" # rubocop:disable Style/FormatString raise("Wait time exhausted! Requested: #{spec}, waited: #{actual}") end