From 8c24cdaf2a244ca82f290c807303deed0e4ada86 Mon Sep 17 00:00:00 2001 From: guilherme silveira Date: Thu, 10 Jun 2010 20:56:07 -0300 Subject: [PATCH] i can buy things cheaper now --- .../rest_from_scratch/part_3/spec/client/buying_process.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/full-examples/rest_from_scratch/part_3/spec/client/buying_process.rb b/full-examples/rest_from_scratch/part_3/spec/client/buying_process.rb index 1fbd4e29..0b555a6a 100644 --- a/full-examples/rest_from_scratch/part_3/spec/client/buying_process.rb +++ b/full-examples/rest_from_scratch/part_3/spec/client/buying_process.rb @@ -16,7 +16,7 @@ def self.run goal = BuyingProcess.new("Rest", "Calpis") result = Restfulie::Mikyung.new.achieve(goal).run result.response.code.should == 200 - result.payment.price.should == "50.0" + result.payment.price.should == "410.0" puts "Goal Achieved" end end