]> source.dussan.org Git - redmine.git/commitdiff
remove trailing white-spaces from test/unit/workflow_test.rb.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 30 Aug 2011 05:09:04 +0000 (05:09 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 30 Aug 2011 05:09:04 +0000 (05:09 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6764 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/workflow_test.rb

index bd713545fd44685b2fbdf4a4470c46707a19f95a..fe356f87d8838fdc44b45a3a9107f69ea2e889e9 100644 (file)
@@ -25,11 +25,11 @@ class WorkflowTest < ActiveSupport::TestCase
     Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 2)
     Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 3, :assignee => true)
     Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 4, :author => true)
-    
+
     assert_difference 'Workflow.count', 3 do
       Workflow.copy(Tracker.find(2), Role.find(1), Tracker.find(3), Role.find(2))
     end
-    
+
     assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 2, :author => false, :assignee => false})
     assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 3, :author => false, :assignee => true})
     assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 4, :author => true, :assignee => false})