Set AJ `return_false_on_aborted_enqueue` true in the test suite:

- Since this is going to be the default in 6.1, let's set it in the
  test suite to avoid deprecation warning.
  Otherwise one has to do `AS::Deprecation.silence { }` everytime we
  add a new test.

  Fix #38107
This commit is contained in:
Edouard CHIN 2019-12-28 16:55:09 +01:00
parent 6cbd81c383
commit be60970be7
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ if ENV["AJ_INTEGRATION_TESTS"]
else
ActiveJob::Base.logger = Logger.new(nil)
ActiveJob::Base.skip_after_callbacks_if_terminated = true
ActiveJob::Base.return_false_on_aborted_enqueue = true
require "adapters/#{@adapter}"
end