Index: net/proxy/dhcp_proxy_script_fetcher_win_unittest.cc |
diff --git a/net/proxy/dhcp_proxy_script_fetcher_win_unittest.cc b/net/proxy/dhcp_proxy_script_fetcher_win_unittest.cc |
index c3368acc5f90e505e86303c7b5ef1871a7f4912e..d9c4356600f3f57652b33a48a6e6d8a83e8642c5 100644 |
--- a/net/proxy/dhcp_proxy_script_fetcher_win_unittest.cc |
+++ b/net/proxy/dhcp_proxy_script_fetcher_win_unittest.cc |
@@ -36,11 +36,7 @@ TEST(DhcpProxyScriptFetcherWin, AdapterNamesAndPacURLFromDhcp) { |
it != adapter_names.end(); |
++it) { |
const std::string& adapter_name = *it; |
- std::string pac_url = |
- DhcpProxyScriptAdapterFetcher::GetPacURLFromDhcp(adapter_name); |
- printf("Adapter '%s' has PAC URL '%s' configured in DHCP.\n", |
- adapter_name.c_str(), |
- pac_url.c_str()); |
+ DhcpProxyScriptAdapterFetcher::GetPacURLFromDhcp(adapter_name); |
} |
} |
@@ -84,11 +80,9 @@ class RealFetchTester { |
FAIL() << "Received completion for test in which this is error."; |
} |
finished_ = true; |
- printf("Result code %d PAC data length %d\n", result, pac_text_.size()); |
} |
void OnTimeout() { |
- printf("Timeout!"); |
OnCompletion(0); |
} |
@@ -134,8 +128,7 @@ TEST(DhcpProxyScriptFetcherWin, RealFetch) { |
fetcher.RunTest(); |
fetcher.WaitUntilDone(); |
- printf("PAC URL was %s\n", |
- fetcher.fetcher_->GetPacURL().possibly_invalid_spec().c_str()); |
+ fetcher.fetcher_->GetPacURL().possibly_invalid_spec(); |
fetcher.FinishTestAllowCleanup(); |
} |