summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/bundler/commands/ssl_spec.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/spec/bundler/commands/ssl_spec.rb b/spec/bundler/commands/ssl_spec.rb
index b4aca55194..4220731b69 100644
--- a/spec/bundler/commands/ssl_spec.rb
+++ b/spec/bundler/commands/ssl_spec.rb
@@ -16,16 +16,17 @@ RSpec.describe "bundle doctor ssl" do
end
end
- @previous_level = Bundler.ui.level
- Bundler.ui.instance_variable_get(:@warning_history).clear
- @previous_client = Gem::Request::ConnectionPools.client
+ @previous_ui = Bundler.ui
+ Bundler.ui = Bundler::UI::Shell.new
Bundler.ui.level = "info"
+
+ @previous_client = Gem::Request::ConnectionPools.client
Artifice.activate_with(@dummy_endpoint)
Gem::Request::ConnectionPools.client = Gem::Net::HTTP
end
after(:each) do
- Bundler.ui.level = @previous_level
+ Bundler.ui = @previous_ui
Artifice.deactivate
Gem::Request::ConnectionPools.client = @previous_client
end