1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Corrects typo in test name

This commit is contained in:
Andy Lindeman 2012-11-26 09:22:28 -05:00
parent 3ec443086b
commit 4ac92c6560

View file

@ -1579,7 +1579,7 @@ class HasManyAssociationsTest < ActiveRecord::TestCase
assert_equal [tagging], post.taggings
end
def test_build_with_polymotphic_has_many_does_not_allow_to_override_type_and_id
def test_build_with_polymorphic_has_many_does_not_allow_to_override_type_and_id
welcome = posts(:welcome)
tagging = welcome.taggings.build(:taggable_id => 99, :taggable_type => 'ShouldNotChange')