From 6efeb954712eaebf274509b9098144a7e569f87b Mon Sep 17 00:00:00 2001 From: David Hayes Date: Tue, 15 Mar 2016 12:19:49 +0000 Subject: [PATCH] Fix linting issues from #289 --- tests/gunicorn.pp | 4 +++- tests/pyvenv.pp | 8 ++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/tests/gunicorn.pp b/tests/gunicorn.pp index 8880b54c..d95f6d0f 100644 --- a/tests/gunicorn.pp +++ b/tests/gunicorn.pp @@ -12,7 +12,9 @@ bind => 'unix:/tmp/gunicorn.socket', environment => 'prod', appmodule => 'app:app', - osenv => { 'DBHOST' => 'dbserver.example.com' }, + osenv => { + 'DBHOST' => 'dbserver.example.com' + }, timeout => 30, template => 'python/gunicorn.erb', } diff --git a/tests/pyvenv.pp b/tests/pyvenv.pp index 93677a5a..8cd0cbce 100644 --- a/tests/pyvenv.pp +++ b/tests/pyvenv.pp @@ -3,10 +3,10 @@ version => '3', } -python::pyvenv { "/opt/uwsgi": +python::pyvenv { '/opt/uwsgi': } -python::pip { "uwsgi": - ensure => "latest", - virtualenv => "/opt/uwsgi" +python::pip { 'uwsgi': + ensure => 'latest', + virtualenv => '/opt/uwsgi' }