summaryrefslogtreecommitdiffstats
path: root/test/unit/lib/redmine/acts/mentionable_test.rb
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2023-11-17 04:24:28 +0000
committerGo MAEDA <maeda@farend.jp>2023-11-17 04:24:28 +0000
commit50381970d821685a70477394ce0d3f1a0a7617b9 (patch)
treea9deced039ca272c0966a08f5371be14b8efa986 /test/unit/lib/redmine/acts/mentionable_test.rb
parent60f7d2224919270dc6cc8399a4e2ae923da2af0b (diff)
downloadredmine-50381970d821685a70477394ce0d3f1a0a7617b9.tar.gz
redmine-50381970d821685a70477394ce0d3f1a0a7617b9.zip
Disable RuboCop warning for intentional comma in percent string array (#39553).
git-svn-id: https://svn.redmine.org/redmine/trunk@22451 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/lib/redmine/acts/mentionable_test.rb')
-rw-r--r--test/unit/lib/redmine/acts/mentionable_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/lib/redmine/acts/mentionable_test.rb b/test/unit/lib/redmine/acts/mentionable_test.rb
index df36e6bbd..0e3b14182 100644
--- a/test/unit/lib/redmine/acts/mentionable_test.rb
+++ b/test/unit/lib/redmine/acts/mentionable_test.rb
@@ -29,7 +29,7 @@ class Redmine::Acts::MentionableTest < ActiveSupport::TestCase
:issues
def test_mentioned_users_with_user_mention
- to_test = %w(@dlopper @dlopper! @dlopper? @dlopper. @dlopper,)
+ to_test = %w(@dlopper @dlopper! @dlopper? @dlopper. @dlopper,) # rubocop:disable Lint/PercentStringArray
to_test.each do |item|
issue = Issue.generate!(project_id: 1, description: item)