summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Johnston <will@johnstonclan.net>2016-05-24 18:40:29 -0500
committerWilliam Johnston <will@johnstonclan.net>2016-05-24 18:40:29 -0500
commit82fc7a7511f8644b81744de20f68bed943fd53fc (patch)
treef71c852ee3347e1efb70bbd2355d4d640d653d61
parentc9f262739935ecabd20bc92575065cbb468f9420 (diff)
downloadbundler-82fc7a7511f8644b81744de20f68bed943fd53fc.tar.gz
Fix issue with older versions of Ruby and URI.
-rw-r--r--spec/bundler/fetcher/compact_index_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/fetcher/compact_index_spec.rb b/spec/bundler/fetcher/compact_index_spec.rb
index 0ce5e04aad..af9a561944 100644
--- a/spec/bundler/fetcher/compact_index_spec.rb
+++ b/spec/bundler/fetcher/compact_index_spec.rb
@@ -4,7 +4,7 @@ require "spec_helper"
describe Bundler::Fetcher::CompactIndex do
let(:downloader) { double(:downloader) }
let(:remote) { double(:remote, :cache_slug => "lsjdf") }
- let(:display_uri) { URI("http://sample_uri.com") }
+ let(:display_uri) { URI("http://sampleuri.com") }
let(:compact_index) { described_class.new(downloader, remote, display_uri) }
# Testing private method. Do not commit.