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

fix class name typo

This commit is contained in:
yuuji.yaginuma 2016-09-02 17:16:15 +09:00
parent 8697ce4dba
commit 9eba3d6976
2 changed files with 4 additions and 4 deletions

View file

@ -25,8 +25,8 @@ end
class BuggyJobTest < ActiveJob::TestCase class BuggyJobTest < ActiveJob::TestCase
def test_stuff def test_stuff
assert_enqueued_with(job: BuggyJobTest) do assert_enqueued_with(job: BuggyJob) do
BuggyJobTest.perform_later BuggyJob.perform_later
end end
end end
end end

View file

@ -24,8 +24,8 @@ end
class BuggyJobTest < ActiveJob::TestCase class BuggyJobTest < ActiveJob::TestCase
def test_stuff def test_stuff
assert_enqueued_with(job: BuggyJobTest) do assert_enqueued_with(job: BuggyJob) do
BuggyJobTest.perform_later BuggyJob.perform_later
end end
end end
end end