[ARVADOS] updated: 354367a4c824a1e44192f2ea9364fd9414162f4d
git at public.curoverse.com
git at public.curoverse.com
Fri Mar 21 11:46:53 EDT 2014
Summary of changes:
apps/workbench/test/integration_helper.rb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
via 354367a4c824a1e44192f2ea9364fd9414162f4d (commit)
from c36fe93c282ef320e7e5f0f9182994b50f7e88d3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 354367a4c824a1e44192f2ea9364fd9414162f4d
Author: Brett Smith <brett at curoverse.com>
Date: Fri Mar 21 11:47:06 2014 -0400
workbench: Bundle integration env bugfix.
The previous version did not unpack arguments correctly.
diff --git a/apps/workbench/test/integration_helper.rb b/apps/workbench/test/integration_helper.rb
index 08d60c3..8e317ba 100644
--- a/apps/workbench/test/integration_helper.rb
+++ b/apps/workbench/test/integration_helper.rb
@@ -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)
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list