aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2013-06-02 23:52:33 +0530
committerVipul A M <vipulnsward@gmail.com>2013-06-02 23:52:33 +0530
commit743ee7b2186711b44cae89cfbb43cdbde0ca2895 (patch)
treede98589d61a0189c64a09b63d172164d6eedea01 /activerecord/test
parentf2855f6ef17254718f625abba285841212dfbb87 (diff)
downloadrails-743ee7b2186711b44cae89cfbb43cdbde0ca2895.tar.gz
rails-743ee7b2186711b44cae89cfbb43cdbde0ca2895.tar.bz2
rails-743ee7b2186711b44cae89cfbb43cdbde0ca2895.zip
wonderfull => wonderful
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/associations/belongs_to_associations_test.rb2
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