diff options
author | Vipul A M <vipulnsward@gmail.com> | 2013-06-02 23:52:33 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2013-06-02 23:52:33 +0530 |
commit | 743ee7b2186711b44cae89cfbb43cdbde0ca2895 (patch) | |
tree | de98589d61a0189c64a09b63d172164d6eedea01 /activerecord/test/cases | |
parent | f2855f6ef17254718f625abba285841212dfbb87 (diff) | |
download | rails-743ee7b2186711b44cae89cfbb43cdbde0ca2895.tar.gz rails-743ee7b2186711b44cae89cfbb43cdbde0ca2895.tar.bz2 rails-743ee7b2186711b44cae89cfbb43cdbde0ca2895.zip |
wonderfull => wonderful
Diffstat (limited to 'activerecord/test/cases')
-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 |