From ccdfb16184fbfdfab06ce6a9fd5ce24e9ec7c078 Mon Sep 17 00:00:00 2001 From: kaisecheng <69120390+kaisecheng@users.noreply.github.com> Date: Tue, 5 Oct 2021 10:34:48 +0200 Subject: [PATCH] Fix plugin manager test that fail to fetch dependency (#13270) remove broken endpoint Fixed: #13218 --- spec/unit/plugin_manager/util_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/unit/plugin_manager/util_spec.rb b/spec/unit/plugin_manager/util_spec.rb index dfa448dc4de..a62262426ba 100644 --- a/spec/unit/plugin_manager/util_spec.rb +++ b/spec/unit/plugin_manager/util_spec.rb @@ -61,7 +61,7 @@ let(:plugin) { "foo" } let(:version) { "9.0.0.0" } - let(:sources) { ["https://rubygems.org", "http://source.02"] } + let(:sources) { ["https://rubygems.org"] } let(:options) { {:rubygems_source => sources} } let(:gemset) { double("gemset") }