diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-04-03 10:30:29 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-04-03 10:30:29 +0000 |
commit | 756a102820968a1ef7f0fbc4a79a0937f4f9867d (patch) | |
tree | c79f035319d02aaabd64f074ae694705f51d82d3 /test/functional/issues_controller_test.rb | |
parent | 2879071f3b73e597b8b0eca490e8710a9de8dbca (diff) | |
download | redmine-756a102820968a1ef7f0fbc4a79a0937f4f9867d.tar.gz redmine-756a102820968a1ef7f0fbc4a79a0937f4f9867d.zip |
Reset status when copying issues (#23610).
git-svn-id: http://svn.redmine.org/redmine/trunk@16451 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/issues_controller_test.rb')
-rw-r--r-- | test/functional/issues_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 10ed24c1c..a6f7cd13a 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -4581,7 +4581,7 @@ class IssuesControllerTest < Redmine::ControllerTest assert_not_nil copy assert_equal orig.project_id, copy.project_id assert_equal orig.tracker_id, copy.tracker_id - assert_equal orig.status_id, copy.status_id + assert_equal 1, copy.status_id if orig.assigned_to_id assert_equal orig.assigned_to_id, copy.assigned_to_id else |