mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix spelling mistakes
This commit is contained in:
parent
d0a370ec93
commit
f55fe55d5a
1 changed files with 4 additions and 4 deletions
|
@ -5,11 +5,11 @@ require 'jobs/nested_job'
|
|||
|
||||
class ActiveJobTestCaseTest < ActiveJob::TestCase
|
||||
# this tests that this job class doesn't get its adapter set.
|
||||
# that's the correct behaviour since we don't want to break
|
||||
# the `class_attribute` inheritence
|
||||
class TestClassAttributeInheritenceJob < ActiveJob::Base
|
||||
# that's the correct behavior since we don't want to break
|
||||
# the `class_attribute` inheritance
|
||||
class TestClassAttributeInheritanceJob < ActiveJob::Base
|
||||
def self.queue_adapter=(*)
|
||||
raise 'Attemping to break `class_attribute` inheritence, bad!'
|
||||
raise 'Attemping to break `class_attribute` inheritance, bad!'
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue