| Index: google_apis/gaia/oauth2_access_token_fetcher_unittest.cc
|
| diff --git a/google_apis/gaia/oauth2_access_token_fetcher_unittest.cc b/google_apis/gaia/oauth2_access_token_fetcher_unittest.cc
|
| index feb8020cf8763f4b7b77545b2771b31a579ef7c1..7c761c70e6b2bad1d35633b96cebb3bccd220b28 100644
|
| --- a/google_apis/gaia/oauth2_access_token_fetcher_unittest.cc
|
| +++ b/google_apis/gaia/oauth2_access_token_fetcher_unittest.cc
|
| @@ -120,7 +120,7 @@ class OAuth2AccessTokenFetcherTest : public testing::Test {
|
|
|
| // These four tests time out, see http://crbug.com/113446.
|
| TEST_F(OAuth2AccessTokenFetcherTest, DISABLED_GetAccessTokenRequestFailure) {
|
| - TestURLFetcher* url_fetcher = SetupGetAccessToken(false, 0, "");
|
| + TestURLFetcher* url_fetcher = SetupGetAccessToken(false, 0, std::string());
|
| EXPECT_CALL(consumer_, OnGetTokenFailure(_)).Times(1);
|
| fetcher_.Start("client_id", "client_secret", "refresh_token", ScopeList());
|
| fetcher_.OnURLFetchComplete(url_fetcher);
|
| @@ -129,7 +129,7 @@ TEST_F(OAuth2AccessTokenFetcherTest, DISABLED_GetAccessTokenRequestFailure) {
|
| TEST_F(OAuth2AccessTokenFetcherTest,
|
| DISABLED_GetAccessTokenResponseCodeFailure) {
|
| TestURLFetcher* url_fetcher =
|
| - SetupGetAccessToken(true, net::HTTP_FORBIDDEN, "");
|
| + SetupGetAccessToken(true, net::HTTP_FORBIDDEN, std::string());
|
| EXPECT_CALL(consumer_, OnGetTokenFailure(_)).Times(1);
|
| fetcher_.Start("client_id", "client_secret", "refresh_token", ScopeList());
|
| fetcher_.OnURLFetchComplete(url_fetcher);
|
|
|