Unify CSS classes for custom fields in issue#show, issue#edit and issue#bulk_edit (#32471).

Patch by Marius BALTEANU.


git-svn-id: http://svn.redmine.org/redmine/trunk@19690 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2020-04-11 09:00:34 +00:00
parent 7a69848d91
commit a14697df68
5 changed files with 6 additions and 6 deletions

View File

@@ -677,7 +677,7 @@ class ProjectsControllerTest < Redmine::ControllerTest
ProjectCustomField.find_by_name('Development status').update_attribute :visible, true
get(:show, :params => {:id => 'ecookbook'})
assert_response :success
assert_select 'li[class=?]', 'cf_3', :text => /Development status/
assert_select 'li.list_cf.cf_3', :text => /Development status/
end
def test_show_should_not_display_hidden_custom_fields