Skip to content

Commit

Permalink
Removed comma after the last item of a hash according to the Ruby sty…
Browse files Browse the repository at this point in the history
…le guide.

Caught by RuboCop, Style/TrailingCommaInLiteral.

See: https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas
  • Loading branch information
sunnz committed Mar 6, 2019
1 parent 856a12b commit 457591f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/classes/php_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
let(:params) do
{
'settings' => { 'PHP/memory_limit' => '300M' },
'cli_settings' => { 'PHP/memory_limit' => '1000M' },
'cli_settings' => { 'PHP/memory_limit' => '1000M' }
}
end

Expand Down

0 comments on commit 457591f

Please sign in to comment.