From f6a87315ad85a1919f650380f4afb8b0f8e320db Mon Sep 17 00:00:00 2001 From: Michael Brodhead Date: Wed, 30 Nov 2011 12:37:10 -0800 Subject: [PATCH] Fix regression in Rakefile introduced in 70e7ea13 --- Rakefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Rakefile b/Rakefile index c4fe04159..71e0318c5 100644 --- a/Rakefile +++ b/Rakefile @@ -72,11 +72,11 @@ def tests(mocked) start = Time.now.to_i threads = [] Thread.main[:results] = [] - Fog.providers.each do |provider| + Fog.providers.each do |key, value| threads << Thread.new do Thread.main[:results] << { - :provider => provider, - :success => sh("export FOG_MOCK=#{mocked} && bundle exec shindont +#{provider.downcase}") + :provider => value, + :success => sh("export FOG_MOCK=#{mocked} && bundle exec shindont +#{key}") } end end