diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-12-20 16:09:28 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-12-20 16:09:28 +0000 |
commit | c2eb894f6759e49e225d2c30f01d1869498bb6bd (patch) | |
tree | a701faa68cbf5e94653c17592a0a3fcde1e115a0 /test/unit/project_test.rb | |
parent | c5697e01e4a90ebfbf4e5ba4cbe828a4ac49fb23 (diff) | |
download | redmine-c2eb894f6759e49e225d2c30f01d1869498bb6bd.tar.gz redmine-c2eb894f6759e49e225d2c30f01d1869498bb6bd.zip |
Merged r16059, r16060, r16064, r16072.
git-svn-id: http://svn.redmine.org/redmine/branches/3.2-stable@16107 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/project_test.rb')
-rw-r--r-- | test/unit/project_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/project_test.rb b/test/unit/project_test.rb index a3f2b7d45..837d2a521 100644 --- a/test/unit/project_test.rb +++ b/test/unit/project_test.rb @@ -365,8 +365,8 @@ class ProjectTest < ActiveSupport::TestCase issue_with_hierarchy_fixed_version.reload assert_equal 4, issue_with_local_fixed_version.fixed_version_id, "Fixed version was not keep on an issue local to the moved project" - assert_equal nil, issue_with_hierarchy_fixed_version.fixed_version_id, "Fixed version is still set after moving the Project out of the hierarchy where the version is defined in" - assert_equal nil, parent_issue.fixed_version_id, "Fixed version is still set after moving the Version out of the hierarchy for the issue." + assert_nil issue_with_hierarchy_fixed_version.fixed_version_id, "Fixed version is still set after moving the Project out of the hierarchy where the version is defined in" + assert_nil parent_issue.fixed_version_id, "Fixed version is still set after moving the Version out of the hierarchy for the issue." end def test_parent |