aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/reply.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-05-21 16:20:56 +0200
committerJosé Valim <jose.valim@gmail.com>2010-05-21 16:20:56 +0200
commitad4be3d75d46a04eb7a1d5a60bdfe68356a43e8b (patch)
tree1020a179182c3f329b7b9f0a321aadd0cd428672 /activerecord/test/models/reply.rb
parentcc45a1068f7920454d6d3a1cdabf844f17417908 (diff)
downloadrails-ad4be3d75d46a04eb7a1d5a60bdfe68356a43e8b.tar.gz
rails-ad4be3d75d46a04eb7a1d5a60bdfe68356a43e8b.tar.bz2
rails-ad4be3d75d46a04eb7a1d5a60bdfe68356a43e8b.zip
Fix failing test.
Diffstat (limited to 'activerecord/test/models/reply.rb')
-rw-r--r--activerecord/test/models/reply.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/test/models/reply.rb b/activerecord/test/models/reply.rb
index 6cc9ee038a..110d540120 100644
--- a/activerecord/test/models/reply.rb
+++ b/activerecord/test/models/reply.rb
@@ -17,7 +17,7 @@ class WrongReply < Reply
validate :check_empty_title
validate :check_content_mismatch, :on => :create
validate :check_wrong_update, :on => :update
- validate :check_title_is_secret, :on => :special_case
+ validate :check_author_name_is_secret, :on => :special_case
def check_empty_title
errors[:title] << "Empty" unless attribute_present?("title")
@@ -41,8 +41,8 @@ class WrongReply < Reply
errors[:title] << "is Wrong Update" if attribute_present?("title") && title == "Wrong Update"
end
- def check_title_is_secret
- errors[:title] << "Invalid" unless title == "secret"
+ def check_author_name_is_secret
+ errors[:author_name] << "Invalid" unless author_name == "secret"
end
end