From fcc632dcc16f51a960f3024f875d1f56ec2b46ae Mon Sep 17 00:00:00 2001 From: Jordan Brough Date: Fri, 21 Jan 2022 07:01:41 -0700 Subject: [PATCH] Drop patch for Rails 4 Support for Rails 4 was dropped in Aug 2020 in PR 1740. --- ...atch_rails_42_action_controller_test_response.rb | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 spec/support/patch_rails_42_action_controller_test_response.rb diff --git a/spec/support/patch_rails_42_action_controller_test_response.rb b/spec/support/patch_rails_42_action_controller_test_response.rb deleted file mode 100644 index 6d41d3ef37..0000000000 --- a/spec/support/patch_rails_42_action_controller_test_response.rb +++ /dev/null @@ -1,13 +0,0 @@ -if RUBY_VERSION >= "2.6.0" - if Rails.version < "5" - module ActionController - class TestResponse < ActionDispatch::TestResponse - def recycle! - @mon_mutex_owner_object_id = nil - @mon_mutex = nil - initialize - end - end - end - end -end