diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/bundler/install/gems/mirror_probe_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/bundler/install/gems/mirror_probe_spec.rb b/spec/bundler/install/gems/mirror_probe_spec.rb index 7689b4cab5..fe9654e0a9 100644 --- a/spec/bundler/install/gems/mirror_probe_spec.rb +++ b/spec/bundler/install/gems/mirror_probe_spec.rb @@ -60,7 +60,7 @@ RSpec.describe "fetching dependencies with a not available mirror" do global_config("BUNDLE_MIRROR__HTTP://127__0__0__1:#{@server_port}/" => @mirror_uri) end - it "fails to install the gem with a timeout error" do + it "fails to install the gem with a timeout error when the mirror is not responding" do gemfile <<-G source "#{@server_uri}" gem 'weakling' @@ -83,7 +83,7 @@ RSpec.describe "fetching dependencies with a not available mirror" do global_config("BUNDLE_MIRROR__ALL" => @mirror_uri) end - it "fails to install the gem with a timeout error" do + it "fails to install the gem with a timeout error when the mirror is not responding" do gemfile <<-G source "#{@server_uri}" gem 'weakling' |