aboutsummaryrefslogtreecommitdiffstats
path: root/guides/bug_report_templates/active_job_gem.rb
diff options
context:
space:
mode:
Diffstat (limited to 'guides/bug_report_templates/active_job_gem.rb')
-rw-r--r--guides/bug_report_templates/active_job_gem.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/bug_report_templates/active_job_gem.rb b/guides/bug_report_templates/active_job_gem.rb
index 7001f70743..debc46ad54 100644
--- a/guides/bug_report_templates/active_job_gem.rb
+++ b/guides/bug_report_templates/active_job_gem.rb
@@ -25,8 +25,8 @@ end
class BuggyJobTest < ActiveJob::TestCase
def test_stuff
- assert_enqueued_with(job: BuggyJobTest) do
- BuggyJobTest.perform_later
+ assert_enqueued_with(job: BuggyJob) do
+ BuggyJob.perform_later
end
end
end