Browse Source

Fix RuboCop offense Layout/SpaceAfterComma due to r22418 (#39534).


git-svn-id: https://svn.redmine.org/redmine/trunk@22435 e93f8b46-1217-0410-a6f0-8f06a7374b81
pull/147/head
Go MAEDA 6 months ago
parent
commit
07b28d3e89
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      test/functional/issues_controller_test.rb

+ 1
- 1
test/functional/issues_controller_test.rb View File

@@ -1199,7 +1199,7 @@ class IssuesControllerTest < Redmine::ControllerTest
create!(
:name => 'Long text', :field_format => 'text',
:full_width_layout => '1',
:tracker_ids => [1,3], :is_for_all => true
:tracker_ids => [1, 3], :is_for_all => true
)
issue = Issue.find(1)
issue.custom_field_values = {field.id => 'This is a long text'}

Loading…
Cancel
Save