From 7e182848e59e779b438d05e50e1b3c6f3ea55086 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sun, 25 Sep 2011 10:45:30 +0000 Subject: [PATCH] code layout clean up of 'should "allow not changing the issue's attributes"' at test/functional/issue_moves_controller_test.rb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7530 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/functional/issue_moves_controller_test.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/functional/issue_moves_controller_test.rb b/test/functional/issue_moves_controller_test.rb index 3fd87175e..dad561212 100644 --- a/test/functional/issue_moves_controller_test.rb +++ b/test/functional/issue_moves_controller_test.rb @@ -108,7 +108,10 @@ class IssueMovesControllerTest < ActionController::TestCase issue_before_move = Issue.find(1) assert_difference 'Issue.count', 1 do assert_no_difference 'Project.find(1).issues.count' do - post :create, :ids => [1], :new_project_id => 2, :copy_options => {:copy => '1'}, :new_tracker_id => '', :assigned_to_id => '', :status_id => '', :start_date => '', :due_date => '' + post :create, :ids => [1], :new_project_id => 2, + :copy_options => {:copy => '1'}, :new_tracker_id => '', + :assigned_to_id => '', :status_id => '', + :start_date => '', :due_date => '' end end issue_after_move = Issue.first(:order => 'id desc', :conditions => {:project_id => 2}) -- 2.39.5