From d8224ceb647f44c2b3cf6d94fc7cb63bdb83930a Mon Sep 17 00:00:00 2001 From: michaelczerwinski Date: Fri, 4 Sep 2015 14:24:27 +0100 Subject: [PATCH] Adjust test code to pass syntax checker --- tests/pyvenv.pp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/pyvenv.pp b/tests/pyvenv.pp index 0f5bfff5..93677a5a 100644 --- a/tests/pyvenv.pp +++ b/tests/pyvenv.pp @@ -1,12 +1,12 @@ class { 'python': - pip=>false, - version=>'3', + pip => false, + version => '3', } python::pyvenv { "/opt/uwsgi": } python::pip { "uwsgi": - virtualenv => "/opt/uwsgi", - ensure => "latest" + ensure => "latest", + virtualenv => "/opt/uwsgi" }