summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-07-22 18:21:59 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-07-23 11:22:59 +0200
commit3e5d4b2c421e8d24cd53cb38e4e3f1b875f2b387 (patch)
tree628f1dafa3589673eae485ba1ec66bb6f2f4d23d
parenta9beb66ed23d9ea5bb1b07256400b503fad80a62 (diff)
downloadbundler-3e5d4b2c421e8d24cd53cb38e4e3f1b875f2b387.tar.gz
Remove unnecessary assignments
-rw-r--r--spec/spec_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index a90d8e9885..2580187402 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -99,8 +99,8 @@ RSpec.configure do |config|
config.before :suite do
Spec::Rubygems.setup
- ENV["RUBYOPT"] = original_env["RUBYOPT"] = "#{ENV["RUBYOPT"]} -r#{Spec::Path.spec_dir}/support/hax.rb"
- ENV["BUNDLE_SPEC_RUN"] = original_env["BUNDLE_SPEC_RUN"] = "true"
+ ENV["RUBYOPT"] = "#{ENV["RUBYOPT"]} -r#{Spec::Path.spec_dir}/support/hax.rb"
+ ENV["BUNDLE_SPEC_RUN"] = "true"
# Don't wrap output in tests
ENV["THOR_COLUMNS"] = "10000"