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