From 457591fa1b8faede0af228b4bb97479bf3e2db8f Mon Sep 17 00:00:00 2001 From: sunnz Date: Wed, 6 Mar 2019 09:51:13 +0000 Subject: [PATCH] Removed comma after the last item of a hash according to the Ruby style guide. Caught by RuboCop, Style/TrailingCommaInLiteral. See: https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas --- spec/classes/php_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/classes/php_spec.rb b/spec/classes/php_spec.rb index 81f14e90..63c6408e 100644 --- a/spec/classes/php_spec.rb +++ b/spec/classes/php_spec.rb @@ -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