aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-02-07 09:12:19 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-02-07 09:12:19 +0900
commit6809758bc65825966bcf9dd1f716e4332724b609 (patch)
tree8b8e10ca819aeabc03b2394c885fcd021874bfa0 /activejob
parentc909a0060795716c745a3aa23d5297ac69da3e6f (diff)
downloadrails-6809758bc65825966bcf9dd1f716e4332724b609.tar.gz
rails-6809758bc65825966bcf9dd1f716e4332724b609.tar.bz2
rails-6809758bc65825966bcf9dd1f716e4332724b609.zip
fix typo in `assert_enqueued_jobs` example [ci skip]
Diffstat (limited to 'activejob')
-rw-r--r--activejob/lib/active_job/test_helper.rb2
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