Skip to content

Commit e7c6b08

Browse files
garethsbBillyONeal
authored andcommitted
Fix test case broken by commit f4c863b (microsoft#1288)
1 parent c9f9115 commit e7c6b08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Release/tests/functional/http/client/client_construction.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ SUITE(client_construction)
183183

184184
config.set_ssl_context_callback([&called](boost::asio::ssl::context& ctx) { called = true; });
185185

186-
http_client client("https://www.google.com/", config);
186+
http_client client(U("https://www.google.com/"), config);
187187

188188
try
189189
{
@@ -204,7 +204,7 @@ SUITE(client_construction)
204204

205205
config.set_ssl_context_callback([&called](boost::asio::ssl::context& ctx) { called = true; });
206206

207-
http_client client("http://www.google.com/", config);
207+
http_client client(U("http://www.google.com/"), config);
208208

209209
try
210210
{

0 commit comments

Comments
 (0)