diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-10-31 09:17:29 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-10-31 09:17:29 +0000 |
commit | e6112a9710cbe33a0ee5787c14498a55ce9ba891 (patch) | |
tree | caa6adf8972bac64745faf5036379bfeb505b56e /test/integration/api_test/issues_test.rb | |
parent | 9a3b8e0b1eaa6239297f53a5f1977457c28723e1 (diff) | |
download | redmine-e6112a9710cbe33a0ee5787c14498a55ce9ba891.tar.gz redmine-e6112a9710cbe33a0ee5787c14498a55ce9ba891.zip |
New custom fields of existing issues are not initialized with their default value (#21074).
git-svn-id: http://svn.redmine.org/redmine/trunk@14773 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/api_test/issues_test.rb')
-rw-r--r-- | test/integration/api_test/issues_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/api_test/issues_test.rb b/test/integration/api_test/issues_test.rb index 18dbfaad9..5a7d64d47 100644 --- a/test/integration/api_test/issues_test.rb +++ b/test/integration/api_test/issues_test.rb @@ -562,7 +562,7 @@ JSON assert_equal "", issue.reload.custom_field_value(field) end - test "PUT /issues/:id.json with tracker change and omitted custom field specific to that tracker does not set default value" do + test "PUT /issues/:id.json with tracker change and omitted custom field specific to that tracker should set default value" do field = IssueCustomField.generate!(:default_value => "Default", :tracker_ids => [2]) issue = Issue.generate!(:project_id => 1, :tracker_id => 1) @@ -573,7 +573,7 @@ JSON end assert_equal 2, issue.reload.tracker_id - assert_nil issue.reload.custom_field_value(field) + assert_equal "Default", issue.reload.custom_field_value(field) end test "PUT /issues/:id.json with tracker change and custom field specific to that tracker set to blank should not set default value" do |