aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorCamden Narzt2017-08-21 19:25:37 -0600
committerCamden Narzt2017-08-21 19:25:37 -0600
commitc9f4d1c35df6bedc9c6c017a27d618055b5aeeca (patch)
tree4fee0695fcaabcde98858de63712c08ece5b17d0 /Library
parentab8a6f31e81ab294c599f1137683c3489ebab0f7 (diff)
downloadbrew-c9f4d1c35df6bedc9c6c017a27d618055b5aeeca.tar.bz2
style
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/download_strategies_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/test/download_strategies_spec.rb b/Library/Homebrew/test/download_strategies_spec.rb
index 07e18ffd0..06d6fa855 100644
--- a/Library/Homebrew/test/download_strategies_spec.rb
+++ b/Library/Homebrew/test/download_strategies_spec.rb
@@ -204,10 +204,10 @@ describe CurlDownloadStrategy do
subject { described_class.new(name, resource) }
let(:name) { "foo" }
let(:url) { "http://example.com/foo.tar.gz" }
- let(:resource) { double(Resource, url: url, mirrors: [], specs: {user: "download:123456"}, version: nil) }
+ let(:resource) { double(Resource, url: url, mirrors: [], specs: { user: "download:123456" }, version: nil) }
it "parses the opts and sets the corresponding args" do
- expect(subject.send(:_curl_opts)).to eq(["--user","download:123456"])
+ expect(subject.send(:_curl_opts)).to eq(["--user", "download:123456"])
end
end