From 8090342e77742c02a809fee33f809ff0c7a94b1c Mon Sep 17 00:00:00 2001 From: juniorsysadmin Date: Sun, 10 Jan 2016 18:14:41 +1100 Subject: [PATCH] Reverse Rubocop ugliness --- spec/defines/nodejs_npm_spec.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spec/defines/nodejs_npm_spec.rb b/spec/defines/nodejs_npm_spec.rb index 88a93d26..8a14b08e 100644 --- a/spec/defines/nodejs_npm_spec.rb +++ b/spec/defines/nodejs_npm_spec.rb @@ -30,8 +30,10 @@ end it 'the npm install command should run under user foo' do - is_expected.to contain_exec('npm_install_express').with('command' => '/usr/bin/npm install express ', - 'user' => 'foo',) + is_expected.to contain_exec('npm_install_express').with( + 'command' => '/usr/bin/npm install express ', + 'user' => 'foo', + ) end end