diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-21 16:58:59 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-21 16:58:59 +0000 |
commit | 29ddc82a11f30f7fcb917dd062fc38f48640b4ea (patch) | |
tree | f7d58fb646b26808462fe1dc91888a68d8ecdcd2 /test/functional/search_custom_fields_visibility_test.rb | |
parent | 55e89ae5bc815e777165de12fdd79545cbf42c5a (diff) | |
download | redmine-29ddc82a11f30f7fcb917dd062fc38f48640b4ea.tar.gz redmine-29ddc82a11f30f7fcb917dd062fc38f48640b4ea.zip |
Removes calls to #assert_template and #assigns in functional tests.
git-svn-id: http://svn.redmine.org/redmine/trunk@15724 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/search_custom_fields_visibility_test.rb')
-rw-r--r-- | test/functional/search_custom_fields_visibility_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/search_custom_fields_visibility_test.rb b/test/functional/search_custom_fields_visibility_test.rb index b4910d37f..86539f5af 100644 --- a/test/functional/search_custom_fields_visibility_test.rb +++ b/test/functional/search_custom_fields_visibility_test.rb @@ -68,9 +68,9 @@ class SearchCustomFieldsVisibilityTest < Redmine::ControllerTest assert_response :success # we should get a result only if the custom field is visible if fields.include?(field) - assert_equal 1, assigns(:results).size + assert_select '#search-results dt', 1 else - assert_equal 0, assigns(:results).size + assert_select '#search-results dt', 0 end end end |