Merge pull request #35083 from alkesh26/activejob-typo-fixes

Activejob typo fixes.
This commit is contained in:
Ryuta Kamizono 2019-01-30 01:41:01 +09:00 committed by GitHub
commit 3d22069c63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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