use strings rather than symbols to better emulate the real thing

This commit is contained in:
David Dollar
2012-01-22 21:17:18 -05:00
parent f28725bdac
commit a37a097f73

View File

@@ -9,8 +9,8 @@ describe Foreman::Process do
let(:number) { 1 }
let(:port) { 777 }
let(:command) { :script }
let(:name) { :foobar }
let(:command) { "script" }
let(:name) { "foobar" }
let(:entry) { OpenStruct.new :name => name, :command => command }
its(:entry) { entry }