summaryrefslogtreecommitdiff
path: root/kitchen-tests
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2016-01-13 11:44:32 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2016-01-13 11:44:32 -0800
commitaf4afcc712d24dbc85a9c020a124acadeed295d2 (patch)
tree08a71e81175177fee945d09bb831d5ae37a24606 /kitchen-tests
parent1edd3dba71b4531bb1a570dd7e387620e8ee61de (diff)
downloadchef-af4afcc712d24dbc85a9c020a124acadeed295d2.tar.gz
autocorrecting Style/TrailingCommalcg/trailing_comma
chefstyle -a fixed 1044 occurrances
Diffstat (limited to 'kitchen-tests')
-rw-r--r--kitchen-tests/cookbooks/webapp/recipes/default.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/kitchen-tests/cookbooks/webapp/recipes/default.rb b/kitchen-tests/cookbooks/webapp/recipes/default.rb
index 839b0ad8d8..e0cbbdd4a8 100644
--- a/kitchen-tests/cookbooks/webapp/recipes/default.rb
+++ b/kitchen-tests/cookbooks/webapp/recipes/default.rb
@@ -30,7 +30,7 @@ mysql_database node['webapp']['database'] do
connection ({
:host => 'localhost',
:username => 'root',
- :password => creds['mysql']['server_root_password']
+ :password => creds['mysql']['server_root_password'],
})
action :create
end
@@ -39,7 +39,7 @@ mysql_database_user node['webapp']['db_username'] do
connection ({
:host => 'localhost',
:username => 'root',
- :password => creds['mysql']['server_root_password']
+ :password => creds['mysql']['server_root_password'],
})
password creds['webapp']['db_password']
database_name node['webapp']['database']