1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-20 02:22:02 +00:00

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
This commit is contained in:
Go MAEDA 2023-11-17 04:24:28 +00:00
parent 60f7d22249
commit 50381970d8

View File

@ -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)