aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-05-25 10:47:04 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-05-25 10:47:04 -0300
commitf4fb48365b1df0a52041e22b165b2ccaa3053edf (patch)
tree680ea13001bfdce92712e58bb031cb3cade062e4
parent7a08b2c4c06448f8274b64e8e9cd0e93a350bc00 (diff)
parentf55fe55d5aeb7f58c47d2b12f2e805c6df9690bd (diff)
downloadrails-f4fb48365b1df0a52041e22b165b2ccaa3053edf.tar.gz
rails-f4fb48365b1df0a52041e22b165b2ccaa3053edf.tar.bz2
rails-f4fb48365b1df0a52041e22b165b2ccaa3053edf.zip
Merge pull request #20294 from yoongkang/american_spelling
Fix spelling mistakes
-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