]> source.dussan.org Git - redmine.git/commitdiff
code cleanup: rubocop: fix Layout/SpaceBeforeComma in lib/redmine/utils.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 19 Oct 2019 12:24:58 +0000 (12:24 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 19 Oct 2019 12:24:58 +0000 (12:24 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@18769 e93f8b46-1217-0410-a6f0-8f06a7374b81

.rubocop_todo.yml
test/unit/time_entry_test.rb

index 68d53def71e4bf7825ff8e79ae86dc8ddf606945..48dd6f75392ee730f908dd57ecef11fe97c01080 100644 (file)
@@ -284,7 +284,6 @@ Layout/SpaceBeforeComma:
     - 'test/helpers/application_helper_test.rb'
     - 'test/mocks/open_id_authentication_mock.rb'
     - 'test/unit/lib/redmine/helpers/calendar_test.rb'
-    - 'test/unit/time_entry_test.rb'
 
 # Cop supports --auto-correct.
 # Configuration parameters: AllowForAlignment.
index e634fe04ed51dd1d72eb700c24325c40ec30710b..1feb4b9e5b9a2fbe1b66151c36a76efb166e682e 100644 (file)
@@ -229,7 +229,7 @@ class TimeEntryTest < ActiveSupport::TestCase
 
   def test_create_with_required_issue_id_and_comment_should_be_validated
     set_language_if_valid 'en'
-    with_settings :timelog_required_fields => ['issue_id' , 'comments'] do
+    with_settings :timelog_required_fields => ['issue_id', 'comments'] do
       entry = TimeEntry.new(:project => Project.find(1), :spent_on => Date.today, :author => User.find(1), :user => User.find(1), :activity => TimeEntryActivity.first, :hours => 1)
 
       assert !entry.save