aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2016-09-27 13:02:07 +0100
committerMike McQuaid2016-09-27 13:02:07 +0100
commit47fe231552c56989fa1f530b1817aafa4c31dff3 (patch)
tree5476919cef5c7dc3b0b67a4b416b91222951c3db /Library
parent4488eddf910e3a9e5f7fdbf55055375be13f0ae5 (diff)
downloadbrew-47fe231552c56989fa1f530b1817aafa4c31dff3.tar.bz2
test/helper/integration_command_test_case: fix rubocop style.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/helper/integration_command_test_case.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Homebrew/test/helper/integration_command_test_case.rb b/Library/Homebrew/test/helper/integration_command_test_case.rb
index ab7fcbeaa..2a677e802 100644
--- a/Library/Homebrew/test/helper/integration_command_test_case.rb
+++ b/Library/Homebrew/test/helper/integration_command_test_case.rb
@@ -76,7 +76,9 @@ class IntegrationCommandTestCase < Homebrew::TestCase
ENV["HOMEBREW_BREW_FILE"] = HOMEBREW_PREFIX/"bin/brew"
ENV["HOMEBREW_INTEGRATION_TEST"] = cmd_id_from_args(args)
ENV["HOMEBREW_TEST_TMPDIR"] = TEST_TMPDIR
- env.each_pair { |k, v| ENV[k] = v }
+ env.each_pair do |k, v|
+ ENV[k] = v
+ end
read, write = IO.pipe
begin