]> source.dussan.org Git - redmine.git/commitdiff
code layout clean up of 'should "allow not changing the issue's attributes"' at test...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 25 Sep 2011 10:45:30 +0000 (10:45 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 25 Sep 2011 10:45:30 +0000 (10:45 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7530 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/issue_moves_controller_test.rb

index 3fd87175e4a3a3010a9a3cf133a63781281a31bf..dad5612120cb9483d516fc546ca9b59e2bf3a4fd 100644 (file)
@@ -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})