diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-02-04 20:08:05 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-02-04 20:08:05 +0000 |
commit | ddc3814d45698226f918f759cb251de3b2fd28e9 (patch) | |
tree | 6741ba4e132ae3e7aa09769174024ca3f42c1a9a | |
parent | fb3b904b8ffbe65ba11ed68252cdb441421b9a2b (diff) | |
download | redmine-ddc3814d45698226f918f759cb251de3b2fd28e9.tar.gz redmine-ddc3814d45698226f918f759cb251de3b2fd28e9.zip |
Fixes assertion.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8775 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/integration/api_test/issues_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/api_test/issues_test.rb b/test/integration/api_test/issues_test.rb index 5d40b3c85..ae07deec5 100644 --- a/test/integration/api_test/issues_test.rb +++ b/test/integration/api_test/issues_test.rb @@ -571,7 +571,7 @@ class ApiTest::IssuesTest < ActionController::IntegrationTest issue = Issue.find(3) assert_equal '150', issue.custom_value_for(2).value - assert_equal ['MySQL', 'PostgreSQL'], issue.custom_field_value(1) + assert_equal ['MySQL', 'PostgreSQL'], issue.custom_field_value(1).sort end end |