From ec44d01c36bd598a328d06611308f0a515ce2412 Mon Sep 17 00:00:00 2001 From: Thibault Jouan Date: Sat, 10 Aug 2013 14:46:31 +0000 Subject: [PATCH] Fix coding standards in shell command action spec --- spec/producer/core/actions/shell_command_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/producer/core/actions/shell_command_spec.rb b/spec/producer/core/actions/shell_command_spec.rb index 956fef4..f4975be 100644 --- a/spec/producer/core/actions/shell_command_spec.rb +++ b/spec/producer/core/actions/shell_command_spec.rb @@ -3,7 +3,7 @@ require 'spec_helper' module Producer::Core describe Actions::ShellCommand do let(:env) { Env.new } - let(:command_args) { 'hello from remote host'} + let(:command_args) { 'hello from remote host' } let(:command) { "echo #{command_args}" } subject(:sh) { Actions::ShellCommand.new(env, command) }