aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test
diff options
context:
space:
mode:
authorprasath <prasath@dhcppc1.(none)>2012-02-09 02:11:36 +0530
committerprasath <prasath@dhcppc1.(none)>2012-02-09 02:11:36 +0530
commit848ee296ec3223436e367f10811ec4e9c2d6c1fd (patch)
tree9474c8f2a08bc6d8e535616329b3f15be10fe880 /activemodel/test
parent6bb04c135d00e94279c3a98f41df4a853e252909 (diff)
downloadrails-848ee296ec3223436e367f10811ec4e9c2d6c1fd.tar.gz
rails-848ee296ec3223436e367f10811ec4e9c2d6c1fd.tar.bz2
rails-848ee296ec3223436e367f10811ec4e9c2d6c1fd.zip
test title changed corresponding to the test
Diffstat (limited to 'activemodel/test')
-rw-r--r--activemodel/test/cases/errors_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/test/cases/errors_test.rb b/activemodel/test/cases/errors_test.rb
index 3a4ae4a6e9..7a610e0c2c 100644
--- a/activemodel/test/cases/errors_test.rb
+++ b/activemodel/test/cases/errors_test.rb
@@ -151,7 +151,7 @@ class ErrorsTest < ActiveModel::TestCase
assert_equal ["name can not be blank", "name can not be nil"], person.errors.to_a
end
- test 'to_hash should return an ordered hash' do
+ test 'to_hash should return a hash' do
person = Person.new
person.errors.add(:name, "can not be blank")
assert_instance_of ::Hash, person.errors.to_hash