| Index: google_apis/gaia/gaia_auth_fetcher_unittest.cc
|
| diff --git a/google_apis/gaia/gaia_auth_fetcher_unittest.cc b/google_apis/gaia/gaia_auth_fetcher_unittest.cc
|
| index a6203ff77590139678097c2135db01f5194ba50d..6b76b9980c27b7e181c2b8bcb35d0a39b47bce2d 100644
|
| --- a/google_apis/gaia/gaia_auth_fetcher_unittest.cc
|
| +++ b/google_apis/gaia/gaia_auth_fetcher_unittest.cc
|
| @@ -788,7 +788,8 @@ TEST_F(GaiaAuthFetcherTest, ListAccounts) {
|
|
|
| GaiaAuthFetcher auth(&consumer, std::string(), GetRequestContext());
|
| net::URLRequestStatus status(net::URLRequestStatus::SUCCESS, 0);
|
| - MockFetcher mock_fetcher(GaiaUrls::GetInstance()->list_accounts_url(),
|
| + MockFetcher mock_fetcher(
|
| + GaiaUrls::GetInstance()->ListAccountsURLWithSource(std::string()),
|
| status, net::HTTP_OK, cookies_, data, net::URLFetcher::GET, &auth);
|
| auth.OnURLFetchComplete(&mock_fetcher);
|
| }
|
| @@ -802,7 +803,8 @@ TEST_F(GaiaAuthFetcherTest, GetCheckConnectionInfo) {
|
| GaiaAuthFetcher auth(&consumer, std::string(), GetRequestContext());
|
| net::URLRequestStatus status(net::URLRequestStatus::SUCCESS, 0);
|
| MockFetcher mock_fetcher(
|
| - GaiaUrls::GetInstance()->get_check_connection_info_url(),
|
| + GaiaUrls::GetInstance()->GetCheckConnectionInfoURLWithSource(
|
| + std::string()),
|
| status, net::HTTP_OK, cookies_, data, net::URLFetcher::GET, &auth);
|
| auth.OnURLFetchComplete(&mock_fetcher);
|
| }
|
|
|