aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorYoong Kang Lim <yoongkang.lim@gmail.com>2015-05-25 23:26:15 +1000
committerYoong Kang Lim <yoongkang.lim@gmail.com>2015-05-25 23:26:15 +1000
commitf55fe55d5aeb7f58c47d2b12f2e805c6df9690bd (patch)
tree97f157568dc6e7888a331044cda12c92d78b473f /activejob
parentd0a370ec93c7e1118f3f58effe2e64712d3492bd (diff)
downloadrails-f55fe55d5aeb7f58c47d2b12f2e805c6df9690bd.tar.gz
rails-f55fe55d5aeb7f58c47d2b12f2e805c6df9690bd.tar.bz2
rails-f55fe55d5aeb7f58c47d2b12f2e805c6df9690bd.zip
Fix spelling mistakes
Diffstat (limited to 'activejob')
-rw-r--r--activejob/test/cases/test_case_test.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activejob/test/cases/test_case_test.rb b/activejob/test/cases/test_case_test.rb
index 0a3a20d5a0..ee816e1dd5 100644
--- a/activejob/test/cases/test_case_test.rb
+++ b/activejob/test/cases/test_case_test.rb
@@ -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