diff options
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/issue_statuses_controller_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/issue_statuses_controller_test.rb b/test/functional/issue_statuses_controller_test.rb index a67ae87d7..19e6926a0 100644 --- a/test/functional/issue_statuses_controller_test.rb +++ b/test/functional/issue_statuses_controller_test.rb @@ -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 |