diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-10-19 12:24:58 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-10-19 12:24:58 +0000 |
commit | 5b18b24309570850d50efb030773974e6a8b5cfd (patch) | |
tree | 1e68be65884e044659d6ac670f0b85e17214be96 /test/unit | |
parent | 6319efe95cc1b3746c5c3b57b692632f9c8a1228 (diff) | |
download | redmine-5b18b24309570850d50efb030773974e6a8b5cfd.tar.gz redmine-5b18b24309570850d50efb030773974e6a8b5cfd.zip |
code cleanup: rubocop: fix Layout/SpaceBeforeComma in lib/redmine/utils.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18769 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/time_entry_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/time_entry_test.rb b/test/unit/time_entry_test.rb index e634fe04e..1feb4b9e5 100644 --- a/test/unit/time_entry_test.rb +++ b/test/unit/time_entry_test.rb @@ -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 |