diff options
author | Go MAEDA <maeda@farend.jp> | 2024-05-18 05:56:55 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-05-18 05:56:55 +0000 |
commit | a9518e28b86a330cbbc2cd2c9170e1cd38c458e2 (patch) | |
tree | 0a89a098bd85c03c1eeadfd29beb72683afa30a1 /test/functional/custom_fields_controller_test.rb | |
parent | 58e9cd420adad1802d42828c8efedca0e6fed2d1 (diff) | |
download | redmine-a9518e28b86a330cbbc2cd2c9170e1cd38c458e2.tar.gz redmine-a9518e28b86a330cbbc2cd2c9170e1cd38c458e2.zip |
Fix RuboCop offense Rails/HttpStatus (#39889).
git-svn-id: https://svn.redmine.org/redmine/trunk@22837 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/custom_fields_controller_test.rb')
-rw-r--r-- | test/functional/custom_fields_controller_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/custom_fields_controller_test.rb b/test/functional/custom_fields_controller_test.rb index 9ccb7acb8..b3fa614ba 100644 --- a/test/functional/custom_fields_controller_test.rb +++ b/test/functional/custom_fields_controller_test.rb @@ -445,7 +445,7 @@ class CustomFieldsControllerTest < Redmine::ControllerTest } } ) - assert_response 302 + assert_response :found end field = IssueCustomField.order("id desc").first assert_equal [1, 3], field.projects.map(&:id).sort @@ -514,7 +514,7 @@ class CustomFieldsControllerTest < Redmine::ControllerTest :custom_field => {:name => 'Copy'} } ) - assert_response 302 + assert_response :found end field = IssueCustomField.order('id desc').first assert_equal 'Copy', field.name @@ -540,7 +540,7 @@ class CustomFieldsControllerTest < Redmine::ControllerTest :id => 99 } ) - assert_response 404 + assert_response :not_found end def test_update |