Fix typo on method name

[Robin Dupret]
This commit is contained in:
Rafael Mendonça França 2015-08-16 19:28:32 -03:00
parent 0e5ffa740c
commit 3f866cbdab
1 changed files with 3 additions and 3 deletions

View File

@ -237,7 +237,7 @@ module ActiveJob
serialized_args.all? { |key, value| value == job[key] }
end
assert matching_job, "No enqueued job found with #{args}"
instanciate_job(matching_job)
instantiate_job(matching_job)
ensure
queue_adapter.enqueued_jobs = original_enqueued_jobs + enqueued_jobs
end
@ -259,7 +259,7 @@ module ActiveJob
serialized_args.all? { |key, value| value == job[key] }
end
assert matching_job, "No performed job found with #{args}"
instanciate_job(matching_job)
instantiate_job(matching_job)
ensure
queue_adapter.performed_jobs = original_performed_jobs + performed_jobs
end
@ -314,7 +314,7 @@ module ActiveJob
serialized_args
end
def instanciate_job(payload)
def instantiate_job(payload)
job = payload[:job].new(*payload[:args])
job.scheduled_at = Time.at(payload[:at]) if payload.key?(:at)
job.queue_name = payload[:queue]