diff options
author | robertomiranda <rjmaltamar@gmail.com> | 2015-01-31 23:12:37 -0500 |
---|---|---|
committer | robertomiranda <rjmaltamar@gmail.com> | 2015-01-31 23:12:41 -0500 |
commit | ce8efcf296479b506ff36695398f6c88ea3c9e72 (patch) | |
tree | 2aef8dd1b83a5729118fe829836207ff91fb3045 /activejob | |
parent | c46c1c1599a9b00373e6ae8d855e372f3435a832 (diff) | |
download | rails-ce8efcf296479b506ff36695398f6c88ea3c9e72.tar.gz rails-ce8efcf296479b506ff36695398f6c88ea3c9e72.tar.bz2 rails-ce8efcf296479b506ff36695398f6c88ea3c9e72.zip |
Use public Module#include, in favor of https://bugs.ruby-lang.org/issues/8846
ref: https://github.com/rails/rails/pull/18763#issuecomment-72349769
Diffstat (limited to 'activejob')
-rw-r--r-- | activejob/test/support/integration/helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/test/support/integration/helper.rb b/activejob/test/support/integration/helper.rb index 9bd45e09e8..39e41b6d29 100644 --- a/activejob/test/support/integration/helper.rb +++ b/activejob/test/support/integration/helper.rb @@ -20,7 +20,7 @@ require 'rails/test_help' Rails.backtrace_cleaner.remove_silencers! require_relative 'test_case_helpers' -ActiveSupport::TestCase.send(:include, TestCaseHelpers) +ActiveSupport::TestCase.include(TestCaseHelpers) JobsManager.current_manager.start_workers |