Commit df774fae authored by Grzegorz Bizon's avatar Grzegorz Bizon

Fux Rubocop offense by freezeing consts in QA test

parent fce8f526
...@@ -5,10 +5,10 @@ module QA ...@@ -5,10 +5,10 @@ module QA
class Selectors < Scenario::Template class Selectors < Scenario::Template
include Scenario::Bootable include Scenario::Bootable
PAGE_MODULES = [QA::Page] PAGES = [QA::Page].freeze
def perform(*) def perform(*)
validators = PAGE_MODULES.map do |pages| validators = PAGES.map do |pages|
Page::Validator.new(pages) Page::Validator.new(pages)
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment