From 4bffaa363180007617418fc01f0d6507609bd09a Mon Sep 17 00:00:00 2001 From: Gabe Berke-Williams Date: Fri, 21 Oct 2011 20:45:16 -0400 Subject: [PATCH] Apparently SSDs are exactly 4 times faster than spinning HDs. --- features/support/env.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/features/support/env.rb b/features/support/env.rb index ce71cf4..816bdda 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -7,5 +7,9 @@ require 'kumade' Before('@slow') do - @aruba_timeout_seconds = 15 + @aruba_timeout_seconds = 60 +end + +After('@slow') do + @aruba_timeout_seconds = Aruba::Api::DEFAULT_TIMEOUT_SECONDS end