1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

activejob typo fixes.

This commit is contained in:
alkesh26 2019-01-29 21:15:12 +05:30
parent 8309cd2c68
commit e356200ca1
2 changed files with 2 additions and 2 deletions

View file

@ -67,7 +67,7 @@ module ActiveJob
false
else
ActiveSupport::Deprecation.warn(
"Rails 6.0 will return false when the enqueing is aborted. Make sure your code doesn't depend on it" \
"Rails 6.0 will return false when the enqueuing is aborted. Make sure your code doesn't depend on it" \
" returning the instance of the job and set `config.active_job.return_false_on_aborted_enqueue = true`" \
" to remove the deprecations."
)

View file

@ -1688,7 +1688,7 @@ class PerformedJobsTest < ActiveJob::TestCase
end
end
def test_assert_performed_with_without_bllock_with_global_id_args
def test_assert_performed_with_without_block_with_global_id_args
ricardo = Person.new(9)
HelloJob.perform_later(ricardo)
perform_enqueued_jobs