diff options
author | Arthur Nogueira Neves <github@arthurnn.com> | 2017-02-06 11:12:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-06 11:12:52 -0500 |
commit | e3afc83631ebe2dbb3c4368756577bdd92ea1d62 (patch) | |
tree | 80153c29b0ce45de42328647443f89812357867d /activesupport/test/core_ext | |
parent | bed90df099f62ea8be9fe19b889f5a0b080525b0 (diff) | |
parent | c8b5d828e7abbbbcf1f0854896453e8b29ab5d42 (diff) | |
download | rails-e3afc83631ebe2dbb3c4368756577bdd92ea1d62.tar.gz rails-e3afc83631ebe2dbb3c4368756577bdd92ea1d62.tar.bz2 rails-e3afc83631ebe2dbb3c4368756577bdd92ea1d62.zip |
Merge pull request #27919 from bf4/correct_spelling
Correct spelling
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r-- | activesupport/test/core_ext/module/attribute_aliasing_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/test/core_ext/module/attribute_aliasing_test.rb b/activesupport/test/core_ext/module/attribute_aliasing_test.rb index d8c2dfd6b8..fdfa868851 100644 --- a/activesupport/test/core_ext/module/attribute_aliasing_test.rb +++ b/activesupport/test/core_ext/module/attribute_aliasing_test.rb @@ -52,8 +52,8 @@ class AttributeAliasingTest < ActiveSupport::TestCase assert_equal "No, really, this is not a joke.", e.Data assert e.Data? - e.Data = "Uppercased methods are teh suck" - assert_equal "Uppercased methods are teh suck", e.body + e.Data = "Uppercased methods are the suck" + assert_equal "Uppercased methods are the suck", e.body assert e.body? end end |