diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-14 13:18:48 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-14 13:18:48 +0000 |
commit | 162d75ed4ec11fbc09c97a1375ac38e184fab46c (patch) | |
tree | 6eb0155bf5bb9dca89b60f3754e7eef6a4e4fba1 /test/unit/custom_field_test.rb | |
parent | de8d7aeb85e47b22c5ea43602e9caca8d81f8fca (diff) | |
download | redmine-162d75ed4ec11fbc09c97a1375ac38e184fab46c.tar.gz redmine-162d75ed4ec11fbc09c97a1375ac38e184fab46c.zip |
remove spaces inside {} of CustomFieldTest
git-svn-id: http://svn.redmine.org/redmine/trunk@20372 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/custom_field_test.rb')
-rw-r--r-- | test/unit/custom_field_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/custom_field_test.rb b/test/unit/custom_field_test.rb index 753da5192..f5d8e8027 100644 --- a/test/unit/custom_field_test.rb +++ b/test/unit/custom_field_test.rb @@ -352,7 +352,7 @@ class CustomFieldTest < ActiveSupport::TestCase def test_project_custom_field_visibility project_field = ProjectCustomField.generate!(:visible => false, :field_format => 'list', :possible_values => %w[a b c]) project = Project.find(3) - project.custom_field_values = { project_field.id => 'a' } + project.custom_field_values = {project_field.id => 'a'} # Admins can find projects with the field with_current_user(User.find(1)) do |