Fix check for Set.

This commit is contained in:
Markus Reiter 2023-03-21 00:54:45 +01:00 committed by Issy Long
parent deb8a13a73
commit e04101007f
No known key found for this signature in database
GPG Key ID: 8247C390DADC67D4

View File

@ -26,7 +26,7 @@ module RuboCop
# Skip if the stanza we detect is already in an `on_*` block.
next if stanza.parent_node.block_type? && ON_SYSTEM_METHODS.include?(stanza.parent_node.method_name)
# Skip if the stanza outside of a block is not also in an `on_*` block.
next if on_system_stanzas(on_blocks).none?(stanza.stanza_name)
next unless on_system_stanzas(on_blocks).include?(stanza.stanza_name)
add_offense(stanza.source_range, message: format(MESSAGE, stanza: stanza.stanza_name))
end