]> source.dussan.org Git - redmine.git/commitdiff
remove trailing white space from test/functional/workflows_controller_test.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 6 Jun 2017 04:57:39 +0000 (04:57 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 6 Jun 2017 04:57:39 +0000 (04:57 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@16612 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/workflows_controller_test.rb

index c22224e3bee7f3ee3289494648b7b9a8bdbdc549..4a4de558885a3033c50e23ad7957391844f6b7b2 100644 (file)
@@ -50,7 +50,7 @@ class WorkflowsControllerTest < Redmine::ControllerTest
     statuses = IssueStatus.where(:id => [2, 3, 5]).sorted.pluck(:name)
     assert_equal ["New issue"] + statuses,
       css_select('table.workflows.transitions-always tbody tr td:first').map(&:text).map(&:strip)
-    
+
     # allowed transitions
     assert_select 'input[type=checkbox][name=?][value="1"][checked=checked]', 'transitions[3][5][always]'
     # not allowed
@@ -150,7 +150,7 @@ class WorkflowsControllerTest < Redmine::ControllerTest
 
   def test_post_edit_with_additional_transitions
     WorkflowTransition.delete_all
-  
+
     post :edit, :params => {
       :role_id => 2,
       :tracker_id => 1,
@@ -413,7 +413,7 @@ class WorkflowsControllerTest < Redmine::ControllerTest
         :target_tracker_ids => ['2', '3'], :target_role_ids => ['1', '3']
       }
       assert_response 200
-      assert_select 'div.flash.error', :text => 'Please select a source tracker or role' 
+      assert_select 'div.flash.error', :text => 'Please select a source tracker or role'
     end
   end