Skip to content
Snippets Groups Projects
Unverified Commit f64197ad authored by Imran Iqbal's avatar Imran Iqbal
Browse files

test(pkgs_spec): fix latest rubocop violations [skip ci]

```
Offenses:

test/integration/v3000-py2/controls/pkgs_spec.rb:10:5: C: [Correctable]
Style/WordArray: Use ['Salt Minion'] for an array of words.
(https://rubystyle.guide#percent-w)
    %w[Salt\ Minion]
    ^^^^^^^^^^^^^^^^
test/integration/v3000-py3/controls/pkgs_spec.rb:10:5: C: [Correctable]
Style/WordArray: Use ['Salt Minion'] for an array of words.
(https://rubystyle.guide#percent-w)
    %w[Salt\ Minion]
    ^^^^^^^^^^^^^^^^
test/integration/v3001-py3/controls/pkgs_spec.rb:10:5: C: [Correctable]
Style/WordArray: Use ['Salt Minion'] for an array of words.
(https://rubystyle.guide#percent-w)
    %w[Salt\ Minion]
    ^^^^^^^^^^^^^^^^
test/integration/v3002-py3/controls/pkgs_spec.rb:10:5: C: [Correctable]
Style/WordArray: Use ['Salt Minion'] for an array of words.
(https://rubystyle.guide#percent-w)
    %w[Salt\ Minion]
    ^^^^^^^^^^^^^^^^
test/integration/v3003-py3/controls/pkgs_spec.rb:10:5: C: [Correctable]
Style/WordArray: Use ['Salt Minion'] for an array of words.
(https://rubystyle.guide#percent-w)
    %w[Salt\ Minion]
    ^^^^^^^^^^^^^^^^

19 files inspected, 5 offenses detected, 5 offenses auto-correctable
```
parent bd345883
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ pkgs = ...@@ -7,7 +7,7 @@ pkgs =
when /bsd$/ when /bsd$/
%w[py38-salt-3002.6] %w[py38-salt-3002.6]
when 'windows' when 'windows'
%w[Salt\ Minion] ['Salt Minion']
else else
%w[salt-master salt-minion] %w[salt-master salt-minion]
end end
......
...@@ -7,7 +7,7 @@ pkgs = ...@@ -7,7 +7,7 @@ pkgs =
when /bsd$/ when /bsd$/
%w[py38-salt-3002.6] %w[py38-salt-3002.6]
when 'windows' when 'windows'
%w[Salt\ Minion] ['Salt Minion']
else else
%w[salt-master salt-minion] %w[salt-master salt-minion]
end end
......
...@@ -7,7 +7,7 @@ pkgs = ...@@ -7,7 +7,7 @@ pkgs =
when /bsd$/ when /bsd$/
%w[py38-salt-3002.6] %w[py38-salt-3002.6]
when 'windows' when 'windows'
%w[Salt\ Minion] ['Salt Minion']
else else
%w[salt-master salt-minion] %w[salt-master salt-minion]
end end
......
...@@ -7,7 +7,7 @@ pkgs = ...@@ -7,7 +7,7 @@ pkgs =
when /bsd$/ when /bsd$/
%w[py38-salt] %w[py38-salt]
when 'windows' when 'windows'
%w[Salt\ Minion] ['Salt Minion']
else else
%w[salt-master salt-minion] %w[salt-master salt-minion]
end end
......
...@@ -7,7 +7,7 @@ pkgs = ...@@ -7,7 +7,7 @@ pkgs =
when /bsd$/ when /bsd$/
%w[py38-salt] %w[py38-salt]
when 'windows' when 'windows'
%w[Salt\ Minion] ['Salt Minion']
else else
%w[salt-master salt-minion] %w[salt-master salt-minion]
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment