Merge branch '1750-remove-old-schema-doc'
[arvados.git] / apps / workbench / test / integration_helper.rb
index 08d60c38aa45c16bb3c3578ac7aa776dacd88998..8e317ba4e238ae179e3d10c3ee82ca42ffcf311d 100644 (file)
@@ -36,7 +36,7 @@ class IntegrationTestRunner < MiniTest::Unit
   # Make a hash that unsets Bundle's environment variables.
   # We'll use this environment when we launch Bundle commands in the API
   # server.  Otherwise, those commands will try to use Workbench's gems, etc.
-  @@APIENV = ENV.map { |*key, val| (key =~ /^BUNDLE_/) ? [key, nil] : nil }.
+  @@APIENV = ENV.map { |(key, val)| (key =~ /^BUNDLE_/) ? [key, nil] : nil }.
     compact.to_h
 
   def _system(*cmd)