diff options
author | Go MAEDA <maeda@farend.jp> | 2024-08-12 08:36:05 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-08-12 08:36:05 +0000 |
commit | 6e21ae720909f9980e58c9411fb9ed8a81f06833 (patch) | |
tree | cdf11a115134b45344fe180f829c1686981b47b1 /test/functional/imports_controller_test.rb | |
parent | b224d878c33d24df81650667d18035652a18911f (diff) | |
download | redmine-6e21ae720909f9980e58c9411fb9ed8a81f06833.tar.gz redmine-6e21ae720909f9980e58c9411fb9ed8a81f06833.zip |
Fix RuboCop offense Layout/SpaceAfterComma, one of the offenses enabled in rubocop-rails-omakase (#39887).
git-svn-id: https://svn.redmine.org/redmine/trunk@22953 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/imports_controller_test.rb')
-rw-r--r-- | test/functional/imports_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/imports_controller_test.rb b/test/functional/imports_controller_test.rb index 42edf5ca5..b4022298a 100644 --- a/test/functional/imports_controller_test.rb +++ b/test/functional/imports_controller_test.rb @@ -435,7 +435,7 @@ class ImportsControllerTest < Redmine::ControllerTest ) ActionMailer::Base.deliveries.clear assert_difference 'Issue.count', 3 do - post(:run, :params => {:id => import,}) + post(:run, :params => {:id => import}) assert_response :found end actual_email_count = ActionMailer::Base.deliveries.size |