]> source.dussan.org Git - redmine.git/commitdiff
code cleanup: rubocop: fix Layout/LeadingCommentSpace in test/unit/issue_test.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 30 Sep 2019 02:44:32 +0000 (02:44 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 30 Sep 2019 02:44:32 +0000 (02:44 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@18554 e93f8b46-1217-0410-a6f0-8f06a7374b81

.rubocop_todo.yml
test/unit/issue_test.rb

index aed974770a3fe5d7cb7e0080ee1f152d8c868022..9c96888316ff4aadbf2eefc451380b85e22451c3 100644 (file)
@@ -308,7 +308,6 @@ Layout/LeadingCommentSpace:
     - 'lib/diff.rb'
     - 'lib/redmine/wiki_formatting/textile/redcloth3.rb'
     - 'test/integration/issues_test.rb'
-    - 'test/unit/issue_test.rb'
     - 'test/unit/project_test.rb'
     - 'test/unit/query_test.rb'
     - 'test/unit/user_test.rb'
index faa23850b8af46d53672e9feeeba0352a0caf21c..baedfec0f0f08650c810957d07128c5b86b78250 100644 (file)
@@ -2849,7 +2849,7 @@ class IssueTest < ActiveSupport::TestCase
   end
 
   def test_recently_updated_scope
-    #should return the last updated issue
+    # should return the last updated issue
     assert_equal Issue.reorder("updated_on DESC").first, Issue.recently_updated.limit(1).first
   end