summaryrefslogtreecommitdiff
path: root/spec/runtime/platform_spec.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-10-30 15:42:08 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-10-31 12:03:49 +0100
commitb401c850c323f6cb2bb17efb6e6def2980356818 (patch)
tree64599037178d6bd627f27463d33971cebd8b3275 /spec/runtime/platform_spec.rb
parent5ba1360de631e2fabf2bfa998b104c4355c58b13 (diff)
downloadbundler-b401c850c323f6cb2bb17efb6e6def2980356818.tar.gz
Don't silence the UI by default
Diffstat (limited to 'spec/runtime/platform_spec.rb')
-rw-r--r--spec/runtime/platform_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/runtime/platform_spec.rb b/spec/runtime/platform_spec.rb
index c504685ea3..f7e93eacf1 100644
--- a/spec/runtime/platform_spec.rb
+++ b/spec/runtime/platform_spec.rb
@@ -23,7 +23,7 @@ RSpec.describe "Bundler.setup with multi platform stuff" do
ruby <<-R
begin
require 'bundler'
- Bundler.setup
+ Bundler.ui.silence { Bundler.setup }
rescue Bundler::GemNotFound => e
puts "WIN"
end