curlpp: use secure url in test
Closes Homebrew/homebrew#46147. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
parent
5bc2820cd7
commit
3546ec400d
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class Curlpp < Formula
|
|||
try {
|
||||
curlpp::Cleanup myCleanup;
|
||||
curlpp::Easy myHandle;
|
||||
myHandle.setOpt(new curlpp::options::Url("http://google.com"));
|
||||
myHandle.setOpt(new curlpp::options::Url("https://google.com"));
|
||||
myHandle.perform();
|
||||
} catch (curlpp::RuntimeError & e) {
|
||||
std::cout << e.what() << std::endl;
|
||||
|
|
Loading…
Reference in a new issue