aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/cask
diff options
context:
space:
mode:
authorViktor Szakats2017-03-12 19:44:01 +0000
committerViktor Szakats2017-03-14 17:27:11 +0000
commitcc8f029f222a618eb30b585ccb22efcce1e5cf91 (patch)
tree1a31cde9d122bc8b8027b201f30a8d147e96c74c /Library/Homebrew/test/cask
parent5d9215b2118e14cf666be3bd3c26146130ff7342 (diff)
downloadbrew-cc8f029f222a618eb30b585ccb22efcce1e5cf91.tar.bz2
secure urls + remove -k from in-doc curl command
Diffstat (limited to 'Library/Homebrew/test/cask')
-rw-r--r--Library/Homebrew/test/cask/cli/home_spec.rb2
-rw-r--r--Library/Homebrew/test/cask/download_strategy_spec.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/test/cask/cli/home_spec.rb b/Library/Homebrew/test/cask/cli/home_spec.rb
index 5208b3390..7be26dd4c 100644
--- a/Library/Homebrew/test/cask/cli/home_spec.rb
+++ b/Library/Homebrew/test/cask/cli/home_spec.rb
@@ -40,7 +40,7 @@ describe Hbc::CLI::Home, :cask do
it "opens the project page when no Cask is specified" do
Hbc::CLI::Home.run
expect(Hbc::CLI::Home.system_commands).to eq [
- ["/usr/bin/open", "--", "http://caskroom.github.io/"],
+ ["/usr/bin/open", "--", "https://caskroom.github.io/"],
]
end
end
diff --git a/Library/Homebrew/test/cask/download_strategy_spec.rb b/Library/Homebrew/test/cask/download_strategy_spec.rb
index 0d92b74ec..416a830ea 100644
--- a/Library/Homebrew/test/cask/download_strategy_spec.rb
+++ b/Library/Homebrew/test/cask/download_strategy_spec.rb
@@ -60,7 +60,7 @@ describe "download strategies", :cask do
downloader.fetch
end
- expect(curl_args.each_cons(2)).to include(["-A", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10) http://caskroom.github.io"])
+ expect(curl_args.each_cons(2)).to include(["-A", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10) https://caskroom.github.io"])
end
end