aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-03-11 13:34:03 -0600
committerSamuel Giddins <segiddins@segiddins.me>2016-03-11 13:34:03 -0600
commit0904c9a11a4e540065ba5110ac93b02e70654c4a (patch)
treec079882b9d544a59ab43a2426f02ebd6ec143d0d /spec
parent2aa6108c33960e383ccaa921e886f55182034a74 (diff)
downloadbundler-0904c9a11a4e540065ba5110ac93b02e70654c4a.tar.gz
[Fetcher] Switch from bundler.rubygems.org to index.rubygems.org
Diffstat (limited to 'spec')
-rw-r--r--spec/bundler/fetcher/base_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/bundler/fetcher/base_spec.rb b/spec/bundler/fetcher/base_spec.rb
index 5a8c7647..bd1c0366 100644
--- a/spec/bundler/fetcher/base_spec.rb
+++ b/spec/bundler/fetcher/base_spec.rb
@@ -42,9 +42,9 @@ describe Bundler::Fetcher::Base do
before { allow(subject).to receive(:remote_uri).and_return(remote_uri_obj) }
context "when the remote uri's host is rubygems.org" do
- it "should create a copy of the remote uri with bundler.rubygems.org as the host" do
+ it "should create a copy of the remote uri with index.rubygems.org as the host" do
fetched_uri = subject.fetch_uri
- expect(fetched_uri.host).to eq("bundler.rubygems.org")
+ expect(fetched_uri.host).to eq("index.rubygems.org")
expect(fetched_uri).to_not be(remote_uri_obj)
end
end