diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-12-09 07:16:59 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-12-09 07:16:59 +0000 |
commit | 2afe5bdf5730023355c22825b16e6f6d788d377b (patch) | |
tree | ced40e44120240cc915f55af87922c42dae3f4f7 /test/unit/custom_field_test.rb | |
parent | 85382514f940476184456f660effb5c28cc2cf7a (diff) | |
download | redmine-2afe5bdf5730023355c22825b16e6f6d788d377b.tar.gz redmine-2afe5bdf5730023355c22825b16e6f6d788d377b.zip |
Rails3: test: replace deprecated Errors#on to Errors#[] and join with to_s at test/unit/custom_field_test.rb
On Rails2, Errors#[] returns single error if one error raises.
But, on Rails3, Errors#[] always returns the array.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8139 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/custom_field_test.rb')
-rw-r--r-- | test/unit/custom_field_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/custom_field_test.rb b/test/unit/custom_field_test.rb index a6e7d8ec7..580e268ec 100644 --- a/test/unit/custom_field_test.rb +++ b/test/unit/custom_field_test.rb @@ -28,8 +28,8 @@ class CustomFieldTest < ActiveSupport::TestCase def test_regexp_validation field = IssueCustomField.new(:name => 'regexp', :field_format => 'text', :regexp => '[a-z0-9') assert !field.save - assert_equal I18n.t('activerecord.errors.messages.invalid'), field.errors.on(:regexp) - + assert_equal I18n.t('activerecord.errors.messages.invalid'), + field.errors[:regexp].to_s field.regexp = '[a-z0-9]' assert field.save end |