Skip to content

Commit

Permalink
test(pkgs_spec): fix latest rubocop violations [skip ci]
Browse files Browse the repository at this point in the history
```
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
```
  • Loading branch information
myii committed Sep 4, 2021
1 parent bd34588 commit f64197a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/integration/v3000-py2/controls/pkgs_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
when /bsd$/
%w[py38-salt-3002.6]
when 'windows'
%w[Salt\ Minion]
['Salt Minion']
else
%w[salt-master salt-minion]
end
Expand Down
2 changes: 1 addition & 1 deletion test/integration/v3000-py3/controls/pkgs_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
when /bsd$/
%w[py38-salt-3002.6]
when 'windows'
%w[Salt\ Minion]
['Salt Minion']
else
%w[salt-master salt-minion]
end
Expand Down
2 changes: 1 addition & 1 deletion test/integration/v3001-py3/controls/pkgs_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
when /bsd$/
%w[py38-salt-3002.6]
when 'windows'
%w[Salt\ Minion]
['Salt Minion']
else
%w[salt-master salt-minion]
end
Expand Down
2 changes: 1 addition & 1 deletion test/integration/v3002-py3/controls/pkgs_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
when /bsd$/
%w[py38-salt]
when 'windows'
%w[Salt\ Minion]
['Salt Minion']
else
%w[salt-master salt-minion]
end
Expand Down
2 changes: 1 addition & 1 deletion test/integration/v3003-py3/controls/pkgs_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
when /bsd$/
%w[py38-salt]
when 'windows'
%w[Salt\ Minion]
['Salt Minion']
else
%w[salt-master salt-minion]
end
Expand Down

0 comments on commit f64197a

Please sign in to comment.