diff options
author | Jonathan <jonacom@lissismore.com> | 2019-01-28 10:05:49 -0500 |
---|---|---|
committer | Jonathan <jonacom@lissismore.com> | 2019-01-28 10:05:49 -0500 |
commit | 74342c6c9e0cca5101de22a85c9367b5969ec46a (patch) | |
tree | 055b73e06ca6d926730be67dfd261ffa5c8fd805 /spec | |
parent | e37d52454f68a2234b89a56c18a5b13a4f6a1ef4 (diff) | |
download | bundler-74342c6c9e0cca5101de22a85c9367b5969ec46a.tar.gz |
remove unneeded variable in spec
Diffstat (limited to 'spec')
-rw-r--r-- | spec/bundler/fetcher/downloader_spec.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/bundler/fetcher/downloader_spec.rb b/spec/bundler/fetcher/downloader_spec.rb index 5da9926472..f985b88982 100644 --- a/spec/bundler/fetcher/downloader_spec.rb +++ b/spec/bundler/fetcher/downloader_spec.rb @@ -4,7 +4,6 @@ RSpec.describe Bundler::Fetcher::Downloader do let(:connection) { double(:connection) } let(:redirect_limit) { 5 } let(:uri) { URI("http://www.uri-to-fetch.com/api/v2/endpoint") } - let(:uri_with_creds) { URI("http://user:password@uri-to-fetch.com/api/v2/endpoint") } let(:options) { double(:options) } subject { described_class.new(connection, redirect_limit) } |