From f55424313730f3f8f03e5de93e61efdf0d6778dc Mon Sep 17 00:00:00 2001 From: Wesley Beary Date: Wed, 14 Oct 2009 09:54:49 -0700 Subject: [PATCH] fix mock toggling in rakefile --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index c7075d440..778361e3d 100644 --- a/Rakefile +++ b/Rakefile @@ -39,12 +39,12 @@ end namespace :specs do task :with_mocking do - Fog.mocking = true + Fog.mock! Rake::Task[:spec].invoke end task :without_mocking do - Fog.mocking = true + Fog.mock! Rake::Task[:spec].invoke end