From 7fd7f54c94ecb51542b91b65b05a0274fa1e0b84 Mon Sep 17 00:00:00 2001 From: Stephen Margheim Date: Tue, 17 Dec 2024 11:42:48 +0100 Subject: [PATCH] Fix rubocop issues --- test/test_helper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_helper.rb b/test/test_helper.rb index 8115e3a..3141de3 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -75,11 +75,11 @@ def before_setup def after_teardown; end end -class ActiveJob::TestCase +class ActiveJob::TestCase # rubocop:disable Style/ClassAndModuleChildren # This needs to be set to `nil` to avoid an odd bug in Rails <= 7.1 # where the queue adapter is given a fresh instance of the test adapter # after the `after_teardown` hook is called. def queue_adapter_for_test nil end -end \ No newline at end of file +end