diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-06-02 13:26:54 -0700 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-06-02 13:26:54 -0700 |
commit | bd096d5fb870f17b80ee7dde59a097ab4558a505 (patch) | |
tree | bf39b8c3f15a2e08754fb967ff95824f681c4c4e /activerecord | |
parent | 31219045ebde6acd26b0f023d006836fc2c10f88 (diff) | |
parent | 743ee7b2186711b44cae89cfbb43cdbde0ca2895 (diff) | |
download | rails-bd096d5fb870f17b80ee7dde59a097ab4558a505.tar.gz rails-bd096d5fb870f17b80ee7dde59a097ab4558a505.tar.bz2 rails-bd096d5fb870f17b80ee7dde59a097ab4558a505.zip |
Merge pull request #10824 from vipulnsward/wonderful
wonderfull => wonderful
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/cases/associations/belongs_to_associations_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/belongs_to_associations_test.rb b/activerecord/test/cases/associations/belongs_to_associations_test.rb index 87af24cbe6..95896971a8 100644 --- a/activerecord/test/cases/associations/belongs_to_associations_test.rb +++ b/activerecord/test/cases/associations/belongs_to_associations_test.rb @@ -338,7 +338,7 @@ class BelongsToAssociationsTest < ActiveRecord::TestCase topic.replies.create!(:title => "re: 37s", :content => "rails") assert_equal 1, Topic.find(topic.id)[:replies_count] - topic.update_columns(content: "rails is wonderfull") + topic.update_columns(content: "rails is wonderful") assert_equal 1, Topic.find(topic.id)[:replies_count] end |