diff options
author | Go MAEDA <maeda@farend.jp> | 2020-04-11 09:00:34 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2020-04-11 09:00:34 +0000 |
commit | a14697df687337f8df8316fc44e5f850ff425379 (patch) | |
tree | 5198cab49589df403636bca7f2e3b5fbfe307e68 /test/helpers/custom_fields_helper_test.rb | |
parent | 7a69848d9138257ccadde6dcf84e96ee462dfebe (diff) | |
download | redmine-a14697df687337f8df8316fc44e5f850ff425379.tar.gz redmine-a14697df687337f8df8316fc44e5f850ff425379.zip |
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
Diffstat (limited to 'test/helpers/custom_fields_helper_test.rb')
-rw-r--r-- | test/helpers/custom_fields_helper_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers/custom_fields_helper_test.rb b/test/helpers/custom_fields_helper_test.rb index 676b34c15..501f31f12 100644 --- a/test/helpers/custom_fields_helper_test.rb +++ b/test/helpers/custom_fields_helper_test.rb @@ -93,7 +93,7 @@ class CustomFieldsHelperTest < Redmine::HelperTest field = IssueCustomField.create!(:name => 'Long text', :field_format => 'text', :text_formatting => 'full') value = CustomValue.new(:value => 'bar', :custom_field => field) - assert_select_in custom_field_tag('object', value), 'textarea[class=?]', 'text_cf wiki-edit' + assert_select_in custom_field_tag('object', value), "textarea.text_cf.wiki-edit.cf_#{field.id}" end def test_select_type_radio_buttons |