From a504a59f0b9a252079d6b7c36332c614c07b6377 Mon Sep 17 00:00:00 2001 From: David Dollar Date: Mon, 13 Dec 2010 18:08:40 -0500 Subject: [PATCH] add a colon to the mock Procfile --- spec/spec_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index b8fe97f..d308383 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -27,7 +27,7 @@ end def write_procfile(procfile="Procfile") File.open(procfile, "w") do |file| file.puts "alpha ./alpha" - file.puts "bravo ./bravo" + file.puts "bravo: ./bravo" end end