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' }