diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-31 11:16:03 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-31 11:16:03 +0000 |
commit | 3eebd827d7b2cd6e259dd8fd7386553b35005e5a (patch) | |
tree | e4b7884afdd1344b2f7d2eef3e1bf10f9a92d745 | |
parent | 6659c630b264325c6fc22c0ba353d724fd1a1817 (diff) | |
download | redmine-3eebd827d7b2cd6e259dd8fd7386553b35005e5a.tar.gz redmine-3eebd827d7b2cd6e259dd8fd7386553b35005e5a.zip |
ruby1.9 compatibility
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4597 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/unit/version_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/version_test.rb b/test/unit/version_test.rb index fa98c0098..4621ad733 100644 --- a/test/unit/version_test.rb +++ b/test/unit/version_test.rb @@ -190,7 +190,7 @@ class VersionTest < ActiveSupport::TestCase # Separate hierarchy project_1_issue = Issue.find(1) project_1_issue.fixed_version = @version - assert project_1_issue.save, project_1_issue.errors.full_messages + assert project_1_issue.save, project_1_issue.errors.full_messages.to_s project_5_issue = Issue.find(6) project_5_issue.fixed_version = @version |