diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-02-07 09:12:19 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-02-07 09:12:19 +0900 |
commit | 6809758bc65825966bcf9dd1f716e4332724b609 (patch) | |
tree | 8b8e10ca819aeabc03b2394c885fcd021874bfa0 | |
parent | c909a0060795716c745a3aa23d5297ac69da3e6f (diff) | |
download | rails-6809758bc65825966bcf9dd1f716e4332724b609.tar.gz rails-6809758bc65825966bcf9dd1f716e4332724b609.tar.bz2 rails-6809758bc65825966bcf9dd1f716e4332724b609.zip |
fix typo in `assert_enqueued_jobs` example [ci skip]
-rw-r--r-- | activejob/lib/active_job/test_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/lib/active_job/test_helper.rb b/activejob/lib/active_job/test_helper.rb index 44ddfa5f69..ed0c05c1e5 100644 --- a/activejob/lib/active_job/test_helper.rb +++ b/activejob/lib/active_job/test_helper.rb @@ -58,7 +58,7 @@ module ActiveJob # The number of times a specific job is enqueued can be asserted. # # def test_logging_job - # assert_enqueued_jobs 2, only: LoggingJob do + # assert_enqueued_jobs 1, only: LoggingJob do # LoggingJob.perform_later # HelloJob.perform_later('jeremy') # end |