Fix spec encoding problem under Ruby 2.0.0.

This commit is contained in:
Michael Granger
2013-03-04 13:03:13 -08:00
parent c94aa13b06
commit 0b5c1f919e

View File

@@ -41,7 +41,7 @@ describe Foreman::Process do
it "should output utf8 properly" do
process = Foreman::Process.new(resource_path("bin/utf8"))
run(process).should == "\xFF\x03\n"
run(process).should == "\xFF\x03\n".force_encoding('binary')
end
end