diff options
-rw-r--r-- | test/functional/workflows_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/workflows_controller_test.rb b/test/functional/workflows_controller_test.rb index cc535c42d..2e1837978 100644 --- a/test/functional/workflows_controller_test.rb +++ b/test/functional/workflows_controller_test.rb @@ -125,7 +125,7 @@ class WorkflowsControllerTest < Redmine::ControllerTest assert_select 'table.workflows.transitions-always tbody tr:nth-child(2)' do assert_select 'td.name', :text => 'New' # assert that the td is enabled - assert_select "td[title='New » New'][class=?]", 'enabled' + assert_select "td.enabled[title='New » New']" # assert that the checkbox is disabled and checked assert_select "input[name='transitions[1][1][always]'][checked=?][disabled=?]", 'checked', 'disabled', 1 end |