@@ -46,7 +46,7 @@ TEST_FIXTURE(uri_address, auto_discovery_proxy)
4646 p_request->reply (200 );
4747 });
4848 http_client_config config;
49-
49+
5050 config.set_proxy (web_proxy::use_auto_discovery);
5151 VERIFY_IS_FALSE (config.proxy ().is_disabled ());
5252 VERIFY_IS_FALSE (config.proxy ().is_specified ());
@@ -63,7 +63,7 @@ TEST_FIXTURE(uri_address, disabled_proxy)
6363 http_asserts::assert_test_request_equals (p_request, methods::PUT, U (" /" ), U (" text/plain" ), U (" sample data" ));
6464 p_request->reply (status_codes::OK);
6565 });
66-
66+
6767 http_client_config config;
6868 config.set_proxy (web_proxy (web_proxy::disabled));
6969 VERIFY_IS_TRUE (config.proxy ().is_disabled ());
@@ -97,13 +97,13 @@ TEST_FIXTURE(uri_address, no_proxy_options_on_winrt)
9797 web_proxy proxy (u);
9898 VERIFY_IS_TRUE (proxy.is_specified ());
9999 VERIFY_ARE_EQUAL (u, proxy.address ());
100- credentials cred (U (" artur" ), U (" fred" )); // relax, this is not my real password
100+ web:: credentials cred (U (" artur" ), U (" fred" )); // relax, this is not my real password
101101 proxy.set_credentials (cred);
102102
103103 http_client_config config;
104104 config.set_proxy (proxy);
105105
106- // Access to this server will succeed because the first request will not be challenged and hence
106+ // Access to this server will succeed because the first request will not be challenged and hence
107107 // my bogus credentials will not be supplied.
108108 http_client client (U (" http://www.microsoft.com" ), config);
109109
0 commit comments