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:
parent
8697ce4dba
commit
9eba3d6976
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue