summaryrefslogtreecommitdiffstats
path: root/test/unit/helpers/custom_fields_helper_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2013-09-30 22:17:27 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2013-09-30 22:17:27 +0000
commitf399b31effc6bae959c1f698f364adc5ea237262 (patch)
tree1f92c99e4f5d16aeccdc7012da52d8fd5f4dab8b /test/unit/helpers/custom_fields_helper_test.rb
parente35640f3e82ce1cd34cf4272ee75910712f64279 (diff)
downloadredmine-f399b31effc6bae959c1f698f364adc5ea237262.tar.gz
redmine-f399b31effc6bae959c1f698f364adc5ea237262.zip
Test broken by r12192 (#2199).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12193 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/helpers/custom_fields_helper_test.rb')
-rw-r--r--test/unit/helpers/custom_fields_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/helpers/custom_fields_helper_test.rb b/test/unit/helpers/custom_fields_helper_test.rb
index bde14a5c9..0c1081e94 100644
--- a/test/unit/helpers/custom_fields_helper_test.rb
+++ b/test/unit/helpers/custom_fields_helper_test.rb
@@ -41,7 +41,7 @@ class CustomFieldsHelperTest < ActionView::TestCase
field = CustomField.new(:field_format => 'foo')
field.id = 52
- assert_equal '<input class="foo_cf" id="object_custom_field_values_52" name="object[custom_field_values][52]" type="text" value="" />',
+ assert_include '<input class="foo_cf" id="object_custom_field_values_52" name="object[custom_field_values][52]" type="text" value="" />',
custom_field_tag_for_bulk_edit('object', field)
end
end