1
0
Fork 0
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:
Yoong Kang Lim 2015-05-25 23:26:15 +10:00
parent d0a370ec93
commit f55fe55d5a

View file

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