From: Toshi MARUYAMA Date: Sat, 14 Nov 2020 13:18:48 +0000 (+0000) Subject: remove spaces inside {} of CustomFieldTest X-Git-Tag: 4.2.0~446 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=162d75ed4ec11fbc09c97a1375ac38e184fab46c;p=redmine.git remove spaces inside {} of CustomFieldTest git-svn-id: http://svn.redmine.org/redmine/trunk@20372 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- 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