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

fix typo in assert_enqueued_jobs example [ci skip]

This commit is contained in:
yuuji.yaginuma 2016-02-07 09:12:19 +09:00
parent c909a00607
commit 6809758bc6

View file

@ -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