summaryrefslogtreecommitdiffstats
path: root/test/integration
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-03-14 12:13:37 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-03-14 12:13:37 +0000
commit242eb5db5d70919a3a03a0e39a5fbf4738124b98 (patch)
tree7791413c352b542ce9e179c27566793883215f3d /test/integration
parent1014ba195f40d284413509153148a54f1c1175a0 (diff)
downloadredmine-242eb5db5d70919a3a03a0e39a5fbf4738124b98.tar.gz
redmine-242eb5db5d70919a3a03a0e39a5fbf4738124b98.zip
Fixed assertion (#19368).
git-svn-id: http://svn.redmine.org/redmine/trunk@14087 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/api_test/issues_test.rb2
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 344962a5b..bad182236 100644
--- a/test/integration/api_test/issues_test.rb
+++ b/test/integration/api_test/issues_test.rb
@@ -432,7 +432,7 @@ JSON
assert_response :created
issue = Issue.order('id DESC').first
- assert_equal ["V1", "V3"], issue.custom_field_value(field)
+ assert_equal ["V1", "V3"], issue.custom_field_value(field).sort
end
test "POST /issues.json with failure should return errors" do