curlpp: use secure url in test

Closes Homebrew/homebrew#46147.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
Viktor Szakats 2015-11-19 03:46:24 +01:00 committed by Dominyk Tiller
parent 5bc2820cd7
commit 3546ec400d

View file

@ -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;