From e3296b3288a8f57dce93f70694830ef4f09bc712 Mon Sep 17 00:00:00 2001 From: garethsb-sony Date: Thu, 12 Dec 2019 07:17:48 +0000 Subject: [PATCH] Fix test case broken by commit f4c863bcf55b2df25aa087377d7ec1978ae0af29 --- Release/tests/functional/http/client/client_construction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Release/tests/functional/http/client/client_construction.cpp b/Release/tests/functional/http/client/client_construction.cpp index f5d20b8379..9d5216c202 100644 --- a/Release/tests/functional/http/client/client_construction.cpp +++ b/Release/tests/functional/http/client/client_construction.cpp @@ -183,7 +183,7 @@ SUITE(client_construction) config.set_ssl_context_callback([&called](boost::asio::ssl::context& ctx) { called = true; }); - http_client client("https://www.google.com/", config); + http_client client(U("https://www.google.com/"), config); try { @@ -204,7 +204,7 @@ SUITE(client_construction) config.set_ssl_context_callback([&called](boost::asio::ssl::context& ctx) { called = true; }); - http_client client("http://www.google.com/", config); + http_client client(U("http://www.google.com/"), config); try {