]> source.dussan.org Git - redmine.git/commitdiff
code layout clean up test/functional/issue_statuses_controller_test.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 8 Oct 2019 14:09:51 +0000 (14:09 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 8 Oct 2019 14:09:51 +0000 (14:09 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@18627 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/issue_statuses_controller_test.rb

index a67ae87d7afbe76fed4464e647c7b8ce12824235..19e6926a0d7e223e7cb389f85aec2ab2ec828f3d 100644 (file)
@@ -48,14 +48,14 @@ class IssueStatusesControllerTest < Redmine::ControllerTest
   def test_index_should_show_warning_when_no_workflow_is_defined
     status = IssueStatus.new :name => "No workflow"
     status.save!
-
     get :index
     assert_response :success
     assert_select 'table.issue_statuses tbody' do
       assert_select 'tr:not(:last-of-type) span.icon-warning', :count => 0
       assert_select 'tr:last-of-type' do
         assert_select 'td.name', :text => status.name
-        assert_select 'td:nth-of-type(3) span.icon-warning', :text => /#{I18n.t(:text_status_no_workflow)}/
+        assert_select 'td:nth-of-type(3) span.icon-warning',
+                      :text => /#{I18n.t(:text_status_no_workflow)}/
       end
     end
   end