summaryrefslogtreecommitdiff
path: root/spec/support/helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/helpers.rb')
-rw-r--r--spec/support/helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/helpers.rb b/spec/support/helpers.rb
index 34ecf32dc6..228bf7699b 100644
--- a/spec/support/helpers.rb
+++ b/spec/support/helpers.rb
@@ -380,7 +380,7 @@ module Spec
def with_env_vars(env_hash, &block)
current_values = {}
- env_hash.each do |k,v|
+ env_hash.each do |k, v|
current_values[k] = ENV[k]
ENV[k] = v
end