diff --git a/test/unit/helpers/custom_fields_helper_test.rb b/test/unit/helpers/custom_fields_helper_test.rb
index 0ca409364..725d780a0 100644
--- a/test/unit/helpers/custom_fields_helper_test.rb
+++ b/test/unit/helpers/custom_fields_helper_test.rb
@@ -46,15 +46,15 @@ class CustomFieldsHelperTest < ActionView::TestCase
value = CustomValue.new(:value => 'bar', :custom_field => field)
field.id = 52
- assert_equal '',
- custom_field_tag('object', value)
+ assert_select_in custom_field_tag('object', value),
+ 'input[type=text][value=bar][name=?]', 'object[custom_field_values][52]'
end
def test_unknow_field_format_should_be_bulk_edited_as_string
field = CustomField.new(:field_format => 'foo')
field.id = 52
- assert_include '',
- custom_field_tag_for_bulk_edit('object', field)
+ assert_select_in custom_field_tag_for_bulk_edit('object', field),
+ 'input[type=text][value=""][name=?]', 'object[custom_field_values][52]'
end
end