diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-24 12:57:39 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-24 12:57:39 +0000 |
commit | 17e05f35902b5f6bff8ee5b2666b9d8cd739985d (patch) | |
tree | 622fac7bda37a2b8c537052bd2fc48faf0713930 /test/unit/query_test.rb | |
parent | e164ad7f1f1e00eacbe60382cca0d0d66fccd4da (diff) | |
download | redmine-17e05f35902b5f6bff8ee5b2666b9d8cd739985d.tar.gz redmine-17e05f35902b5f6bff8ee5b2666b9d8cd739985d.zip |
cleanup: rubocop: fix Layout/SpaceInsideParens in test/unit/query_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@19247 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/query_test.rb')
-rw-r--r-- | test/unit/query_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/query_test.rb b/test/unit/query_test.rb index 3ccfc753a..df6c61551 100644 --- a/test/unit/query_test.rb +++ b/test/unit/query_test.rb @@ -1851,7 +1851,7 @@ class QueryTest < ActiveSupport::TestCase p = Project.generate! do |project| project.status = Project::STATUS_ARCHIVED end - i = Issue.generate!( :project => p, :tracker => p.trackers.first ) + i = Issue.generate!(:project => p, :tracker => p.trackers.first) assert !i.visible? test_issue_count |