aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorYuki Nishijima <mail@yukinishijima.net>2014-09-20 20:40:38 -0700
committerYuki Nishijima <mail@yukinishijima.net>2014-09-20 20:45:35 -0700
commit38d6697aff77c9e6844a1fd320ec108753e61f51 (patch)
tree0aa82e0a409886c0efeb764d09c4bcce3c4be2aa /activerecord
parent5f8c1b197d2ccece0e08baba84cca9bca44c9750 (diff)
downloadrails-38d6697aff77c9e6844a1fd320ec108753e61f51.tar.gz
rails-38d6697aff77c9e6844a1fd320ec108753e61f51.tar.bz2
rails-38d6697aff77c9e6844a1fd320ec108753e61f51.zip
Fix typo [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/attribute_methods_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/attribute_methods_test.rb b/activerecord/test/cases/attribute_methods_test.rb
index 153f870e3d..b42cc3a173 100644
--- a/activerecord/test/cases/attribute_methods_test.rb
+++ b/activerecord/test/cases/attribute_methods_test.rb
@@ -734,7 +734,7 @@ class AttributeMethodsTest < ActiveRecord::TestCase
assert_raise(ActiveRecord::UnknownAttributeError) { @target.new.attributes = { :title => "Ants in pants" } }
end
- def test_bulk_update_raise_unknown_attribute_errro
+ def test_bulk_update_raise_unknown_attribute_error
error = assert_raises(ActiveRecord::UnknownAttributeError) {
@target.new(:hello => "world")
}