From 9fbe380691ce5c77d764d4417536b558941424fc Mon Sep 17 00:00:00 2001 From: Misha Gorodnitzky Date: Wed, 8 Jun 2022 10:57:25 +0100 Subject: [PATCH] fix raise to keep rubocop happy --- spec/dfe/analytics/send_events_spec.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spec/dfe/analytics/send_events_spec.rb b/spec/dfe/analytics/send_events_spec.rb index f0d0c133..2ec40554 100644 --- a/spec/dfe/analytics/send_events_spec.rb +++ b/spec/dfe/analytics/send_events_spec.rb @@ -56,7 +56,8 @@ assert_performed_jobs 5 do described_class.perform_later([]) - rescue DummyException # the final exception won’t be caught + rescue DummyException + # the final exception won’t be caught end end end