Fix RuboCop linter error: Remove trailing whitespace

Remove trailing whitespace from lines 18 and 21 in sync_job_test.rb
to fix Layout/TrailingWhitespace violations.

Co-authored-by: jjmata <187772+jjmata@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-26 18:07:20 +00:00
parent 5b9bf3da61
commit ecc7c78a92

View File

@@ -15,10 +15,10 @@ class SyncJobTest < ActiveJob::TestCase
# Verify that SyncJob has a rescue handler for Provider::TwelveData::RateLimitError
# The retry_on declaration adds a rescue_from handler
handler_found = SyncJob.rescue_handlers.any? do |handler|
handler.is_a?(Hash) &&
handler.is_a?(Hash) &&
handler[:exception] == Provider::TwelveData::RateLimitError
end
assert handler_found, "SyncJob should have retry_on configured for Provider::TwelveData::RateLimitError"
end
end