diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-09-25 17:55:14 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-09-25 17:55:14 +0000 |
commit | 2e1da01790ff13d267ef0328b611145b7c064060 (patch) | |
tree | 41d508f4461b5bb0aec91c8a62159417739cf380 | |
parent | 942eb6e06bf49cc761fb55faec5edf5ff927c116 (diff) | |
download | redmine-2e1da01790ff13d267ef0328b611145b7c064060.tar.gz redmine-2e1da01790ff13d267ef0328b611145b7c064060.zip |
code cleanup: rubocop: fix Layout/EmptyLinesAroundMethodBody in test/unit/issue_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18537 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | .rubocop_todo.yml | 1 | ||||
-rw-r--r-- | test/unit/issue_test.rb | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 5087f0747..2da61b664 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -218,7 +218,6 @@ Layout/EmptyLinesAroundMethodBody: - 'test/functional/users_controller_test.rb' - 'test/integration/account_test.rb' - 'test/unit/attachment_test.rb' - - 'test/unit/issue_test.rb' - 'test/unit/lib/redmine/menu_manager/mapper_test.rb' - 'test/unit/lib/redmine/menu_manager/menu_helper_test.rb' - 'test/unit/lib/redmine/unified_diff_test.rb' diff --git a/test/unit/issue_test.rb b/test/unit/issue_test.rb index 5ba7a6d4c..faa23850b 100644 --- a/test/unit/issue_test.rb +++ b/test/unit/issue_test.rb @@ -3224,6 +3224,5 @@ class IssueTest < ActiveSupport::TestCase # March 21st and the issue should be marked overdue User.current = user_in_asia assert issue.overdue? - end end |